We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598a668 commit ce71122Copy full SHA for ce71122
lib/fastlane/plugin/sentry/actions/sentry_upload_build.rb
@@ -98,7 +98,7 @@ def self.available_options
98
# Skip validation if value is nil or empty (will be validated in run method)
99
next if value.nil? || value.to_s.empty?
100
101
- UI.user_error!("Could not find APK at path '#{value}'") unless File.exist?(value)
+ UI.user_error!("Could not find APK at path '#{value}'") unless File.exist?(value)
102
UI.user_error!("Path '#{value}' is not an APK") unless File.extname(value).casecmp('.apk').zero?
103
end),
104
FastlaneCore::ConfigItem.new(key: :aab_path,
0 commit comments