We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc237f2 commit e7922d8Copy full SHA for e7922d8
build/execute.js
@@ -5,7 +5,7 @@ const debug = DEBUG('execute');
5
export function execute(cmd, args, options) {
6
return new Promise((resolve, reject) => {
7
debug(`${cmd} ${args.join(' ')}`);
8
- const proc = spawn(cmd, args, {...options || {}, shell: true, stdio: 'inherit'});
+ const proc = spawn(cmd, args, {...options || {}, stdio: 'inherit'});
9
proc.on('close', function(code) {
10
const result = {exitCode: code};
11
if (parseInt(code) !== 0) {
0 commit comments