зеркало из https://github.com/electron/electron.git
19 строки
462 B
JavaScript
19 строки
462 B
JavaScript
|
const cp = require('child_process')
|
||
|
|
||
|
const utils = require('./lib/utils')
|
||
|
|
||
|
const electronPath = utils.getAbsoluteElectronExec()
|
||
|
|
||
|
var child = cp.spawn(electronPath, process.argv.slice(2), { stdio: 'inherit' })
|
||
|
child.on('close', (code) => process.exit(code))
|
||
|
|
||
|
const handleTerminationSignal = (signal) =>
|
||
|
process.on(signal, () => {
|
||
|
if (!child.killed) {
|
||
|
child.kill(signal)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
handleTerminationSignal('SIGINT')
|
||
|
handleTerminationSignal('SIGTERM')
|