Fix getConfigPath()

This commit is contained in:
Bryan Ashby
2020-06-29 22:27:31 -06:00
parent 0b78b42f2f
commit b361913929

View File

@@ -64,7 +64,7 @@ function getDefaultConfigPath() {
}
function getConfigPath() {
const baseConfigPath = argv.config ? argv.config : config.getDefaultPath();
const baseConfigPath = argv.config ? argv.config : config.Config.getDefaultPath();
return baseConfigPath + 'config.hjson';
}