Merge pull request #989 from napi-rs/fix/spwan-arg
fix(cli): shell: true instead of bash
This commit is contained in:
commit
671ac80e8b
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export function spawn(
|
|||
const [cmd, ...args] = command.split(' ').map((s) => s.trim())
|
||||
debug(`execute ${cmd} ${args.join(' ')}`)
|
||||
return new Promise((resolve, reject) => {
|
||||
const spawnStream = _spawn(cmd, args, { ...options, shell: 'bash' })
|
||||
const spawnStream = _spawn(cmd, args, { ...options, shell: true })
|
||||
const chunks: Buffer[] = []
|
||||
process.stdin.pipe(spawnStream.stdin)
|
||||
spawnStream.stdout?.on('data', (chunk) => {
|
||||
|
|
Loading…
Reference in a new issue