We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824aa5a commit 12596b6Copy full SHA for 12596b6
src/utils/cmd.utils.ts
@@ -20,7 +20,7 @@ export const spawn = async ({
20
silentErrors?: boolean;
21
}): Promise<number | null> => {
22
return await new Promise<number | null>((resolve, reject) => {
23
- const process: ChildProcessWithoutNullStreams = spawnCommand(command, args);
+ const process: ChildProcessWithoutNullStreams = spawnCommand(command, args, { shell: true });
24
25
process.stdout.on('data', (data) => {
26
if (stdout !== null && stdout !== undefined) {
0 commit comments