Files

18 lines
554 B
JavaScript
Raw Permalink Normal View History

const { spawn } = require("node:child_process");
const electronPath = require("electron"); // returns binary path
const { applyElectronLaunchEnv } = require("./launchEnv.cjs");
const env = applyElectronLaunchEnv(process.env);
const child = spawn(electronPath, ["."], { stdio: "inherit", env });
child.on("exit", (code) => process.exit(code ?? 0));
// Forward SIGINT/SIGTERM to the Electron child process so Ctrl+C works
for (const sig of ["SIGINT", "SIGTERM"]) {
process.on(sig, () => {
if (!child.killed) {
child.kill(sig);
}
});
}