pilot/lib/pilot/options.rb in fastlane-2.62.0.beta.20171011010003 vs pilot/lib/pilot/options.rb in fastlane-2.62.0.beta.20171014010003
- old
+ new
@@ -142,13 +142,15 @@
is_string: true,
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
verify_block: proc do |value|
ENV["FASTLANE_TEAM_ID"] = value.to_s
end),
+ # rubocop:disable Metrics/LineLength
FastlaneCore::ConfigItem.new(key: :itc_provider,
env_name: "PILOT_ITC_PROVIDER",
- description: "The provider short name to be used with the iTMSTransporter to identify your team",
+ description: "The provider short name to be used with the iTMSTransporter to identify your team. To get provider short name run `pathToXcode.app/Contents/Applications/Application\\ Loader.app/Contents/itms/bin/iTMSTransporter -m provider -u 'USERNAME' -p 'PASSWORD' -account_type itunes_connect -v off`. The short names of providers should be listed in the second column",
optional: true),
+ # rubocop:enable Metrics/LineLength
FastlaneCore::ConfigItem.new(key: :groups,
short_option: "-g",
env_name: "PILOT_GROUPS",
description: "Associate tester to one group or more by group name / group id. E.g. '-g \"Team 1\",\"Team 2\"'",
optional: true,