Skip to content

Commit 7f402ce

Browse files
authored
Merge pull request #250 from yoshifujiT/fix-error-message-option-name
Fix the option name on the error message
2 parents ef3f96f + 364aaaa commit 7f402ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def self.available_options
187187
default_value_dynamic: true,
188188
optional: true,
189189
verify_block: proc do |value|
190-
UI.user_error!("firebase_app_distribution: '#{value}' is not a valid value for android_artifact_path. Should be 'APK' or 'AAB'") unless ['APK', 'AAB'].include?(value)
190+
UI.user_error!("firebase_app_distribution: '#{value}' is not a valid value for android_artifact_type. Should be 'APK' or 'AAB'") unless ['APK', 'AAB'].include?(value)
191191
end),
192192
FastlaneCore::ConfigItem.new(key: :app,
193193
env_name: "FIREBASEAPPDISTRO_APP",

0 commit comments

Comments
 (0)