lib/sigh/options.rb in sigh-0.4.3 vs lib/sigh/options.rb in sigh-0.4.4

- old
+ new

@@ -31,9 +31,17 @@ description: "Your Apple ID Username", default_value: CredentialsManager::AppfileConfig.try_fetch_value(:apple_id), verify_block: Proc.new do |value| CredentialsManager::PasswordManager.shared_manager(value) end), + FastlaneCore::ConfigItem.new(key: :team_id, + short_option: "-t", + env_name: "SIGH_TEAM_ID", + description: "The ID of your team if you're in multiple teams", + optional: true, + verify_block: Proc.new do |value| + ENV["FASTLANE_TEAM_ID"] = value + end), FastlaneCore::ConfigItem.new(key: :provisioning_file_name, short_option: "-n", env_name: "SIGH_PROVISIONING_PROFILE_NAME", description: "The name of the generated certificate file", optional: true),