1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

[PM-13361] Fix DDG backwards compat (#11804)

This commit is contained in:
Daniel García
2024-10-31 18:03:24 +01:00
committed by GitHub
parent 2b6406c1a1
commit f771bd7dc8
4 changed files with 42 additions and 8 deletions

View File

@@ -16,16 +16,24 @@ if (
app.dock.hide();
});
const proc = spawn(path.join(process.execPath, "..", "desktop_proxy"), process.argv.slice(1), {
cwd: process.cwd(),
stdio: "inherit",
shell: false,
});
const proc = spawn(
path.join(process.execPath, "..", "desktop_proxy.inherit"),
process.argv.slice(1),
{
cwd: process.cwd(),
stdio: "inherit",
shell: false,
},
);
proc.on("exit", () => {
proc.on("exit", (...args) => {
// eslint-disable-next-line no-console
console.error("Proxy process exited", args);
process.exit(0);
});
proc.on("error", () => {
proc.on("error", (...args) => {
// eslint-disable-next-line no-console
console.error("Proxy process errored", args);
process.exit(1);
});
} else {