this repo has no description

nativeFixes: Fix for updating when chrome_crashpad_handler is running or in use

adryd d5fb6a08 21eed0a8

Changed files
+1 -1
packages
core-extensions
src
nativeFixes
+1 -1
packages/core-extensions/src/nativeFixes/host.ts
···
if (filePath === "resources/app.asar") {
// You tried
targetFilePath = path.join(targetDir, "resources", "_app.asar");
-
} else if (filePath === appName) {
+
} else if (filePath === appName || filePath === "chrome_crashpad_handler") {
// Can't write over the executable? Just move it! 4head
if (await exists(targetFilePath)) {
await fs.rename(targetFilePath, targetFilePath + ".bak");