Skip to content

Commit 617b74f

Browse files
jaleksynasAndrea Falcone
authored andcommitted
Also check for a default value from the Appfile (fastlane#5465)
1 parent 5f387aa commit 617b74f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/lib/fastlane/actions/update_app_identifier.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def self.available_options
7878
FastlaneCore::ConfigItem.new(key: :app_identifier,
7979
env_name: 'FL_UPDATE_APP_IDENTIFIER',
8080
description: 'The app Identifier you want to set',
81-
default_value: ENV['PRODUCE_APP_IDENTIFIER'])
81+
default_value: ENV['PRODUCE_APP_IDENTIFIER'] || CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier))
8282
]
8383
end
8484

0 commit comments

Comments
 (0)