mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-25 03:33:36 +03:00
9981da93ed
* feat(mode) cleanup * fix(cli) fix bin entry
63 lines
1.2 KiB
JavaScript
63 lines
1.2 KiB
JavaScript
const
|
|
logger = require('./logger'),
|
|
log = logger('app:spawn'),
|
|
warn = logger('app:spawn', 'red'),
|
|
crossSpawn = require('cross-spawn')
|
|
|
|
/*
|
|
Returns pid, takes onClose
|
|
*/
|
|
module.exports.spawn = function (cmd, params, cwd, onClose) {
|
|
log(`Running "${cmd} ${params.join(' ')}"`)
|
|
log()
|
|
|
|
const runner = crossSpawn(
|
|
cmd,
|
|
params, {
|
|
stdio: 'inherit',
|
|
stdout: 'inherit',
|
|
stderr: 'inherit',
|
|
cwd
|
|
}
|
|
)
|
|
|
|
runner.on('close', code => {
|
|
log()
|
|
if (code) {
|
|
log(`Command "${cmd}" failed with exit code: ${code}`)
|
|
}
|
|
|
|
onClose && onClose(code)
|
|
})
|
|
|
|
return runner.pid
|
|
}
|
|
|
|
/*
|
|
Returns nothing, takes onFail
|
|
*/
|
|
module.exports.spawnSync = function (cmd, params, cwd, onFail) {
|
|
log(`[sync] Running "${cmd} ${params.join(' ')}"`)
|
|
log()
|
|
|
|
const runner = crossSpawn.sync(
|
|
cmd,
|
|
params, {
|
|
stdio: 'inherit',
|
|
stdout: 'inherit',
|
|
stderr: 'inherit',
|
|
cwd
|
|
}
|
|
)
|
|
|
|
if (runner.status || runner.error) {
|
|
warn()
|
|
warn(`⚠️ Command "${cmd}" failed with exit code: ${runner.status}`)
|
|
if (runner.status === null) {
|
|
warn(`⚠️ Please globally install "${cmd}"`)
|
|
}
|
|
onFail && onFail()
|
|
process.exit(1)
|
|
}
|
|
}
|