Merge 96a25bb3467b92c1c4d9e929dad41d11575cb203 into 8b193864fd35795bd46d5553e4abc48b0ed1b7c8

This commit is contained in:
Liam Mitchell 2025-10-22 22:35:42 +08:00 committed by GitHub
commit 8bc384823c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,5 +155,13 @@ export function startElectron(root: string | undefined): ChildProcess {
const ps = spawn(electronPath, [entry].concat(args), { stdio: 'inherit' })
ps.on('close', process.exit)
for (const signal of ['SIGINT', 'SIGTERM', 'SIGUSR2'] as NodeJS.Signals[]) {
process.on(signal, () => {
if (!ps.killed) {
ps.kill(signal)
}
})
}
return ps
}