We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a8403 commit 857c200Copy full SHA for 857c200
index.ts
@@ -446,7 +446,8 @@ async function init() {
446
447
console.log(`\nDone. Now run:\n`)
448
if (root !== cwd) {
449
- console.log(` ${bold(green(`cd ${path.relative(cwd, root)}`))}`)
+ const cdProjectName = path.relative(cwd, root)
450
+ console.log(` ${bold(green(`cd ${cdProjectName.includes(' ') ? `"${cdProjectName}"` : cdProjectName}`))}`)
451
}
452
console.log(` ${bold(green(getCommand(packageManager, 'install')))}`)
453
if (needsPrettier) {
0 commit comments