gym/lib/gym/options.rb in fastlane-2.49.0.beta.20170726010003 vs gym/lib/gym/options.rb in fastlane-2.49.0
- old
+ new
@@ -105,10 +105,10 @@
description: "Method used to export the archive. Valid values are: app-store, ad-hoc, package, enterprise, development, developer-id",
is_string: true,
optional: true,
verify_block: proc do |value|
av = %w(app-store ad-hoc package enterprise development developer-id)
- UI.user_error!("Unsupported export_method, must be: #{av}") unless av.include?(value)
+ UI.user_error!("Unsupported export_method '#{value}', must be: #{av}") unless av.include?(value)
end),
FastlaneCore::ConfigItem.new(key: :export_options,
env_name: "GYM_EXPORT_OPTIONS",
description: "Specifies path to export options plist. Use 'xcodebuild -help' to print the full set of available options",
is_string: false,