Skip to content

Commit 52e5d46

Browse files
author
John Doe
committed
refactor: wip
1 parent 56a87fc commit 52e5d46

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/utils/src/lib/execute-process.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ export function executeProcess(cfg: ProcessConfig): Promise<ProcessResult> {
164164
const spawnedProcess = spawn(command, args ?? [], {
165165
// shell:true tells Windows to use shell command for spawning a child process
166166
// 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',
167+
shell: true,
169168
windowsHide: true,
170169
...options,
171170
}) as ChildProcessByStdio<Writable, Readable, Readable>;

0 commit comments

Comments
 (0)