Skip to content

Commit

Permalink
fix(misc): create-nx-workspace should work with custom presets on win…
Browse files Browse the repository at this point in the history
…dows (#16473)

(cherry picked from commit 04a0c77)
  • Loading branch information
AgentEnder authored and FrozenPandaz committed Apr 24, 2023
1 parent df55630 commit cdb0d5a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/create-nx-workspace/src/utils/child-process-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export function spawnAndWait(command: string, args: string[], cwd: string) {
cwd,
stdio: 'inherit',
env: { ...process.env, NX_DAEMON: 'false' },
shell: true,
windowsHide: true,
});

childProcess.on('exit', (code) => {
Expand Down

0 comments on commit cdb0d5a

Please sign in to comment.