Skip to content

Commit

Permalink
chore: fix mapping.txt path
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrouge committed Nov 11, 2024
1 parent 09fdd73 commit 6303216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/android/move-outputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ const main = async () => {
const mapping = [
path.join(
Paths.appDir,
`app/build/outputs/mapping/${APP_BUILD_TYPE}/mapping.txt`,
`build/outputs/mapping/${APP_BUILD_TYPE}/mapping.txt`,
),
path.join(Paths.distDir, "mapping.txt"),
] as const;
const symbols = [
path.join(
Paths.appDir,
`app/build/outputs/native-debug-symbols/${APP_BUILD_TYPE}/native-debug-symbols.zip`,
`build/outputs/native-debug-symbols/${APP_BUILD_TYPE}/native-debug-symbols.zip`,
),
path.join(Paths.distDir, "native-debug-symbols.zip"),
] as const;
Expand Down

0 comments on commit 6303216

Please sign in to comment.