Skip to content

Commit

Permalink
Crashlytics fix cache directory on Windows (#3842)
Browse files Browse the repository at this point in the history
  • Loading branch information
samedson committed Oct 18, 2021
1 parent d06d46b commit a45a8fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1 +1,2 @@
- Fix Auth Emulator deleteTenant not working with Node Admin (#3817).
- Fix Crashlytics Android Native Symbols not working on Windows due to ":" in the path (#3842)
3 changes: 2 additions & 1 deletion src/commands/crashlytics-symbols-upload.ts
Expand Up @@ -69,7 +69,8 @@ export default new Command("crashlytics:symbols:upload <symbolFiles...>")
SYMBOL_CACHE_ROOT_DIR,
`crashlytics-${uuid.v4()}`,
"nativeSymbols",
app,
// Windows does not allow ":" in their directory names
app.replace(/:/g, "-"),
generator
),
symbolFile: "",
Expand Down

0 comments on commit a45a8fc

Please sign in to comment.