Skip to content

Commit 3925647

Browse files
committed
try adding the shell option back in
1 parent 6281e9f commit 3925647

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/execute.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const debug = DEBUG('execute');
55
export function execute(cmd, args, options) {
66
return new Promise((resolve, reject) => {
77
debug(`${cmd} ${args.join(' ')}`);
8-
const proc = spawn(cmd, args, {...options || {}, stdio: 'inherit'});
8+
const proc = spawn(cmd, args, {...options || {}, shell: true, stdio: 'inherit'});
99
proc.on('close', function(code) {
1010
const result = {exitCode: code};
1111
if (parseInt(code) !== 0) {

0 commit comments

Comments
 (0)