Skip to content

Commit 63d9a8b

Browse files
committed
fix: build step due execa version bump (fix #3964)
1 parent b81eb86 commit 63d9a8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/build.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const step = (name, root, fn) => async () => {
2323
console.log(cyan('Built: ') + green(name));
2424
};
2525

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

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

0 commit comments

Comments
 (0)