mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
29 lines
694 B
JavaScript
Executable File
29 lines
694 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const proc = require('child_process');
|
|
|
|
const electron = require('./');
|
|
|
|
const child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false });
|
|
let childClosed = false;
|
|
child.on('close', function (code, signal) {
|
|
childClosed = true;
|
|
if (code === null) {
|
|
console.error(electron, 'exited with signal', signal);
|
|
process.exit(1);
|
|
}
|
|
process.exit(code);
|
|
});
|
|
|
|
const handleTerminationSignal = function (signal) {
|
|
process.on(signal, function signalHandler () {
|
|
if (!childClosed) {
|
|
child.kill(signal);
|
|
}
|
|
});
|
|
};
|
|
|
|
handleTerminationSignal('SIGINT');
|
|
handleTerminationSignal('SIGTERM');
|
|
handleTerminationSignal('SIGUSR2');
|