fix configLocation spelling

fix-timelapse-in-addstorage
Moe 2023-01-12 15:40:40 -08:00
parent 72fbf5a75f
commit 8cc15d8ef5
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
module.exports = function(s){
const conifgLocation = process.argv[2]
const configLocation = process.argv[2]
s.location = {
super : s.mainDirectory+'/super.json',
config : conifgLocation && conifgLocation.endsWith('.json') ? conifgLocation : s.mainDirectory+'/conf.json',
config : configLocation && configLocation.endsWith('.json') ? configLocation : s.mainDirectory+'/conf.json',
languages : s.mainDirectory+'/languages'
}
try{