We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a87fc commit 52e5d46Copy full SHA for 52e5d46
packages/utils/src/lib/execute-process.ts
@@ -164,8 +164,7 @@ export function executeProcess(cfg: ProcessConfig): Promise<ProcessResult> {
164
const spawnedProcess = spawn(command, args ?? [], {
165
// shell:true tells Windows to use shell command for spawning a child process
166
// https://stackoverflow.com/questions/60386867/node-spawn-child-process-not-working-in-windows
167
- // Note: When shell is true, args are passed as-is to the shell
168
- shell: process.platform === 'win32',
+ shell: true,
169
windowsHide: true,
170
...options,
171
}) as ChildProcessByStdio<Writable, Readable, Readable>;
0 commit comments