We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1786d commit 2b47e10Copy full SHA for 2b47e10
src/taskrunner.ts
@@ -44,7 +44,7 @@ export function createDefaultTaskRunner(): TaskRunner {
44
loggerCategory,
45
`running command ${readableCommand} ${args.join(" ")}`
46
);
47
- let task = spawn(command, args);
+ let task = spawn(command, args, { shell: true });
48
49
let stdout = createInterface({ input: task.stdout });
50
stdout.on("line", (line) => {
0 commit comments