Fix typo in logging for commander parseConfigFile (#2352)

This commit is contained in:
Andrew Lane
2016-07-20 16:08:22 -04:00
committed by Florent Vilmart
parent ac1f762f07
commit 397e6bc976

View File

@@ -86,7 +86,7 @@ function parseConfigFile(program) {
options[key] = action(value); options[key] = action(value);
} }
}) })
console.log(`Configuation loaded from ${jsonPath}`) console.log(`Configuration loaded from ${jsonPath}`)
} }
return options; return options;
} }