Skip to content

Commit 2b47e10

Browse files
committed
Added spawn { shell: true } because of Node 22 security changes.
1 parent ef1786d commit 2b47e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/taskrunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function createDefaultTaskRunner(): TaskRunner {
4444
loggerCategory,
4545
`running command ${readableCommand} ${args.join(" ")}`
4646
);
47-
let task = spawn(command, args);
47+
let task = spawn(command, args, { shell: true });
4848

4949
let stdout = createInterface({ input: task.stdout });
5050
stdout.on("line", (line) => {

0 commit comments

Comments
 (0)