Skip to content

Commit 04dff62

Browse files
committed
Update message
1 parent 978d932 commit 04dff62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/cli/run.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ module.exports = function (argv) {
100100

101101
// Be nice and create a default db.json if it doesn't exist
102102
if (is.JSON(source) && !fs.existsSync(source)) {
103-
console.log(chalk.gray(` ${source} doesn't seem to exist, creating one`))
103+
console.log(chalk.yellow(` Oops, ${source} doesn't seem to exist`))
104+
console.log(chalk.yellow(` Creating ${source} with some default data`))
105+
console.log()
104106
fs.writeFileSync(source, JSON.stringify(example, null, 2))
105107
}
106108

0 commit comments

Comments
 (0)