summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index fe5c4b9448..b8d9b35f41 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -89,7 +89,7 @@ async function init(): Promise<Config> {
let configLogger = new Logger('Config');
if (!fs.existsSync(configPath)) {
- throw 'Configuration not found';
+ throw 'Configuration not found - Please run "npm run config" command.';
}
const config = loadConfig();