Skip to content

Commit

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

Similar to the Pilot fix here: fastlane#9481
  • Loading branch information
GevaZeichner authored and SubhrajyotiSen committed Jan 17, 2024
1 parent fac420f commit dc92dc6
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 dc92dc6

Please sign in to comment.