We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c485c27 commit 7e26febCopy full SHA for 7e26feb
scripts/internal/util.js
@@ -18,7 +18,7 @@ async function execPipe (name, args = []) {
18
19
const exec = (name, args = [], opts = {}) => new Promise(resolve => {
20
console.error(blue('[ run cmd ] ' + [name, ...args].join(' ')))
21
- cp.spawn(name, args, { stdio: 'inherit', cwd: root, ...opts })
+ cp.spawn(name, args, { stdio: 'inherit', cwd: root, shell: true, ...opts })
22
.on('exit', (status, signal) => resolve({ status, signal }))
23
.on('error', error => resolve({ error }))
24
})
0 commit comments