Skip to content

Commit

Permalink
[gym] Fix error message for catalyst_platform option (#21332)
Browse files Browse the repository at this point in the history
  • Loading branch information
koraktor committed Oct 7, 2023
1 parent c08287c commit fccf94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gym/lib/gym/options.rb
Expand Up @@ -152,7 +152,7 @@ def self.plain_options
optional: true,
verify_block: proc do |value|
av = %w(ios macos)
UI.user_error!("Unsupported export_method '#{value}', must be: #{av}") unless av.include?(value)
UI.user_error!("Unsupported catalyst_platform '#{value}', must be: #{av}") unless av.include?(value)
end),
FastlaneCore::ConfigItem.new(key: :installer_cert_name,
env_name: "GYM_INSTALLER_CERT_NAME",
Expand Down

0 comments on commit fccf94b

Please sign in to comment.