Reset repository to README title only

This commit is contained in:
2026-05-07 19:26:23 +09:00
parent 435fa89517
commit 0b061e63b7
119 changed files with 0 additions and 26867 deletions

View File

@@ -1,24 +0,0 @@
const { spawn } = require('child_process')
const electronBinary = require('electron')
const electronArgs = ['.']
if(process.platform === 'linux'){
electronArgs.push('--no-sandbox', '--disable-gpu')
}
const child = spawn(electronBinary, electronArgs, {
stdio: 'inherit',
env: {
...process.env,
LAUNCHER_SMOKE_EXIT: '1',
LAUNCHER_SMOKE_EXIT_DELAY_MS: process.env.LAUNCHER_SMOKE_EXIT_DELAY_MS || '5000'
}
})
child.on('exit', (code, signal) => {
if(signal != null){
process.exit(1)
}
process.exit(code ?? 0)
})