Skip to content

Commit 6eecb4e

Browse files
authored
fix(deploy): fix typo in post-deploy message (#7289)
Fix missing space in message shown after non-prod deploy. Fixes #7285.
1 parent 7299efb commit 6eecb4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/deploy/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ const printResults = ({
706706
if (!deployToProduction) {
707707
log()
708708
log('If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag:')
709-
log(chalk.cyanBright.bold(`netlify deploy${runBuildCommand ? '' : '--no-build'} --prod`))
709+
log(chalk.cyanBright.bold(`netlify deploy${runBuildCommand ? '' : ' --no-build'} --prod`))
710710
log()
711711
}
712712
}

0 commit comments

Comments
 (0)