fastlane/lib/fastlane/swift_fastlane_function.rb in fastlane-2.70.0 vs fastlane/lib/fastlane/swift_fastlane_function.rb in fastlane-2.70.1
- old
+ new
@@ -24,17 +24,19 @@
@reserved_words = %w[associativity break case catch class continue convenience default deinit didSet do else enum extension fallthrough false final for func get guard if in infix init inout internal lazy let mutating nil operator override postfix precedence prefix private public repeat required return self set static struct subscript super switch throws true try var weak where while willSet].to_set
# rubocop:enable LineLength
@default_values_to_ignore = {
"cert" => ["keychain_path"].to_set,
+ "get_certificates" => ["keychain_path"].to_set,
"set_github_release" => ["api_token"].to_set,
"github_api" => ["api_token"].to_set,
"create_pull_request" => ["api_token", "head", "api_url"].to_set,
"commit_github_file" => ["api_token"].to_set,
"verify_xcode" => ["xcode_path"].to_set,
"produce" => ["sku"].to_set,
"create_app_online" => ["sku"].to_set,
- "screengrab" => ["android_home"].to_set
+ "screengrab" => ["android_home"].to_set,
+ "capture_android_screenshots" => ["android_home"].to_set
}
end
def ignore_default_value?(function_name: nil, param_name: nil)
action_set = @default_values_to_ignore[function_name]