Skip to content

Commit

Permalink
fix: build step due execa version bump (fix #3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Jul 8, 2019
1 parent b81eb86 commit 63d9a8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/build.js
Expand Up @@ -23,7 +23,8 @@ const step = (name, root, fn) => async () => {
console.log(cyan('Built: ') + green(name)); console.log(cyan('Built: ') + green(name));
}; };


const shell = cmd => execa.shell(cmd, { stdio: ['pipe', 'pipe', 'inherit'] }); const shell = cmd =>
execa(cmd, { stdio: ['pipe', 'pipe', 'inherit'], shell: true });


const has = t => !targets.length || targets.includes(t); const has = t => !targets.length || targets.includes(t);


Expand Down

0 comments on commit 63d9a8b

Please sign in to comment.