From 65e1734d68b269a9d11a75d20f8747b016211855 Mon Sep 17 00:00:00 2001 From: Andrew Lane Date: Wed, 20 Jul 2016 16:03:51 -0400 Subject: [PATCH] Fix typo in logging for commander parseConfigFile --- 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 486723571d..12ea5ea794 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; }