1746ae8c35
When the electron child process exits with a signal, the close event handler receives code null and the cli wrapper would silently exit successfully. Fix it to log a message and exit with a nonzero code in this case. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
25 lines
594 B
JavaScript
Executable file
25 lines
594 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
var electron = require('./')
|
|
|
|
var proc = require('child_process')
|
|
|
|
var child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false })
|
|
child.on('close', function (code, signal) {
|
|
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 (!child.killed) {
|
|
child.kill(signal)
|
|
}
|
|
})
|
|
}
|
|
|
|
handleTerminationSignal('SIGINT')
|
|
handleTerminationSignal('SIGTERM')
|