Skip to content

Commit

Permalink
cli: make cd dir dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
timsuchanek committed May 8, 2018
1 parent bdc53d2 commit 1b0709e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/packages/prisma-cli-core/src/commands/init/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Either try using a new directory name, or remove the files listed above.
const steps: string[] = []

if (dir) {
steps.push(`Open folder: ${chalk.cyan('cd example')}`)
steps.push(`Open folder: ${chalk.cyan(`cd ${dir}`)}`)
}

if (results.cluster!.local && results.writeDockerComposeYml) {
Expand Down

0 comments on commit 1b0709e

Please sign in to comment.