From 04dff628d8775cf712b4469fa324ce3550db3188 Mon Sep 17 00:00:00 2001 From: typicode Date: Thu, 13 Oct 2016 00:54:55 +0200 Subject: [PATCH] Update message --- src/cli/run.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cli/run.js b/src/cli/run.js index b935e50..e80be91 100644 --- a/src/cli/run.js +++ b/src/cli/run.js @@ -100,7 +100,9 @@ module.exports = function (argv) { // Be nice and create a default db.json if it doesn't exist if (is.JSON(source) && !fs.existsSync(source)) { - console.log(chalk.gray(` ${source} doesn't seem to exist, creating one`)) + console.log(chalk.yellow(` Oops, ${source} doesn't seem to exist`)) + console.log(chalk.yellow(` Creating ${source} with some default data`)) + console.log() fs.writeFileSync(source, JSON.stringify(example, null, 2)) }