Fix getConfigPath()

This commit is contained in:
Bryan Ashby 2020-06-29 22:27:31 -06:00
parent 0b78b42f2f
commit b361913929
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 1 additions and 1 deletions

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';
}