match/lib/match/options.rb in fastlane-2.71.0.beta.20171221010003 vs match/lib/match/options.rb in fastlane-2.71.0.beta.20171222010003

- old
+ new

@@ -33,10 +33,11 @@ env_name: "MATCH_APP_IDENTIFIER", description: "The bundle identifier(s) of your app (comma-separated)", is_string: false, type: Array, # we actually allow String and Array here skip_type_validation: true, + code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)), FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "MATCH_USERNAME", description: "Your Apple ID Username", @@ -60,10 +61,11 @@ FastlaneCore::ConfigItem.new(key: :team_id, short_option: "-b", env_name: "FASTLANE_TEAM_ID", description: "The ID of your Developer Portal team if you're in multiple teams", optional: true, + code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id), verify_block: proc do |value| ENV["FASTLANE_TEAM_ID"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :git_full_name, @@ -79,9 +81,10 @@ FastlaneCore::ConfigItem.new(key: :team_name, short_option: "-l", env_name: "FASTLANE_TEAM_NAME", description: "The name of your Developer Portal team if you're in multiple teams", optional: true, + code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name), verify_block: proc do |value| ENV["FASTLANE_TEAM_NAME"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :verbose,