We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b6c9d commit 8b9d083Copy full SHA for 8b9d083
packages/create/src/actions/createProject.ts
@@ -78,7 +78,6 @@ export const createProject = async (
78
const templateConfig = TEMPLATES[selectedTemplate];
79
80
const initDir = path.resolve(projectName);
81
- setCwd(initDir);
82
83
trace(`Creating project "${projectName}" in "${initDir}"`);
84
@@ -89,6 +88,8 @@ export const createProject = async (
89
88
process.exit(1);
90
}
91
+ setCwd(initDir);
92
+
93
await mkdir(projectName, { recursive: true });
94
95
console.log(`Creating a new sku project in ${chalk.green(initDir)}.`);
0 commit comments