* chore: refactor scripts for octokit * update release script * update more octokit scripts * cleanup * remove unecessary refactor * fixup package lock
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			462 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			462 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const cp = require('child_process')
 | 
						|
const utils = require('./lib/utils')
 | 
						|
const electronPath = utils.getAbsoluteElectronExec()
 | 
						|
 | 
						|
const 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')
 |