Merge 96a25bb3467b92c1c4d9e929dad41d11575cb203 into 91368b665518b9ceecf7240ed93c1078bfa54447

This commit is contained in:
Liam Mitchell 2025-12-08 16:11:11 +05:30 committed by GitHub
commit e288028334
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,5 +157,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
}