From 397e6bc976f2a6a7325d58eab0df3f621869f499 Mon Sep 17 00:00:00 2001 From: Andrew Lane Date: Wed, 20 Jul 2016 16:08:22 -0400 Subject: [PATCH] Fix typo in logging for commander parseConfigFile (#2352) --- src/cli/utils/commander.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/utils/commander.js b/src/cli/utils/commander.js index 48672357..12ea5ea7 100644 --- a/src/cli/utils/commander.js +++ b/src/cli/utils/commander.js @@ -86,7 +86,7 @@ function parseConfigFile(program) { options[key] = action(value); } }) - console.log(`Configuation loaded from ${jsonPath}`) + console.log(`Configuration loaded from ${jsonPath}`) } return options; }