match/lib/match/options.rb in fastlane-2.90.0.beta.20180409050033 vs match/lib/match/options.rb in fastlane-2.90.0.beta.20180410050128
- old
+ new
@@ -66,14 +66,11 @@
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),
- default_value_dynamic: true,
- verify_block: proc do |value|
- ENV["FASTLANE_TEAM_ID"] = value.to_s
- end),
+ default_value_dynamic: true),
FastlaneCore::ConfigItem.new(key: :git_full_name,
env_name: "MATCH_GIT_FULL_NAME",
description: "git user full name to commit",
optional: true,
default_value: nil),
@@ -87,13 +84,10 @@
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),
- default_value_dynamic: true,
- verify_block: proc do |value|
- ENV["FASTLANE_TEAM_NAME"] = value.to_s
- end),
+ default_value_dynamic: true),
FastlaneCore::ConfigItem.new(key: :verbose,
env_name: "MATCH_VERBOSE",
description: "Print out extra information and all commands",
is_string: false,
default_value: false,