Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1d8f901

Browse files
vsavkinFrozenPandaz
authored andcommittedAug 18, 2020
fix(core): create-nx-workspace uses a unix-style path on windows
1 parent 74a61e7 commit 1d8f901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/create-nx-workspace/bin/create-nx-workspace.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ function createApp(
452452

453453
if (nxCloud) {
454454
output.addVerticalSeparator();
455-
execSync(`./node_modules/.bin/nx g @nrwl/nx-cloud:init --no-analytics`, {
455+
execSync(`npx nx g @nrwl/nx-cloud:init --no-analytics`, {
456456
stdio: [0, 1, 2],
457457
cwd: path.join(process.cwd(), name),
458458
});

0 commit comments

Comments
 (0)
Please sign in to comment.