Skip to content

Commit

Permalink
[action][upload_symbols_to_crashlytics] allow '~' in binary path (#21032
Browse files Browse the repository at this point in the history
)

Similar to the Pilot fix here: #9481
  • Loading branch information
GevaZeichner committed Dec 13, 2023
1 parent 7da098f commit a8a6e8e
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -174,6 +174,7 @@ def self.available_options
description: "The path to the upload-symbols file of the Fabric app",
optional: true,
verify_block: proc do |value|
value = File.expand_path(value)
UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :platform,
Expand Down

0 comments on commit a8a6e8e

Please sign in to comment.