Skip to content

Commit

Permalink
fix inconsistent sourcemap path spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
brainbicycle committed Sep 18, 2023
1 parent cce79f2 commit 6fcbada
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastlane/sentry_fastlane.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
end

settings = platform_settings(options[:platform])
source_map_path = settings[:source_map_path]
sourcemap_path = settings[:sourcemap_path]
bundle_path = settings[:bundle_path]
outfile = settings[:outfile]

Expand Down Expand Up @@ -114,11 +114,11 @@
def platform_settings(platform)
settings = {
ios: {
source_map_path: 'dist/main.jsbundle.map',
sourcemap_path: 'dist/main.jsbundle.map',
bundle_path: 'dist/main.jsbundle'
},
android: {
source_map_path: 'android/app/src/main/assets/index.android.bundle.map',
sourcemap_path: 'android/app/src/main/assets/index.android.bundle.map',
bundle_path: 'android/app/src/main/assets/index.android.bundle'
}
}
Expand Down

0 comments on commit 6fcbada

Please sign in to comment.