We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e8debf commit 47bcf13Copy full SHA for 47bcf13
scripts/start.mts
@@ -76,7 +76,7 @@ async function cleanup(signal: NodeJS.Signals) {
76
console.log('\nstart | requested termination.');
77
await timers.setTimeout(10_000);
78
const stillRunning = subProcesses.filter((p) => p.exitCode === null);
79
- for (const p of stillRunning) p.kill('SIGKILL');
+ for (const p of stillRunning) p.kill('SIGTERM');
80
console.log('\nstart | done.');
81
process.exit(0);
82
}
0 commit comments