Skip to content

Commit

Permalink
upload symbols: expands binary_path for validation
Browse files Browse the repository at this point in the history
Similar to the Pilot fix here: #9481
  • Loading branch information
GevaZeichner committed Feb 9, 2023
1 parent 68e0ef1 commit 222c1df
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 222c1df

Please sign in to comment.