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 8eb0bc8 commit ee13f7cCopy full SHA for ee13f7c
packages/@vue/cli/lib/Creator.js
@@ -172,7 +172,7 @@ module.exports = class Creator {
172
log(`🎉 Successfully created project ${chalk.yellow(name)}.`)
173
log(
174
`👉 Get started with the following commands:\n\n` +
175
- chalk.cyan(` ${chalk.gray('$')} cd ${name}\n`) +
+ (this.context === process.cwd() ? `` : chalk.cyan(` ${chalk.gray('$')} cd ${name}\n`)) +
176
chalk.cyan(` ${chalk.gray('$')} ${packageManager === 'yarn' ? 'yarn serve' : 'npm run serve'}`)
177
)
178
log()
0 commit comments