forgot semicolon in a hurry meshctrl.js #6029
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
7b8cf85740
commit
832e618602
|
@ -1117,7 +1117,7 @@ function performConfigOperations(args) {
|
|||
if (fs.existsSync(configFile) == false) { console.log("Unable to find config.json."); return; }
|
||||
var config = null;
|
||||
try { config = fs.readFileSync(configFile).toString('utf8'); } catch (ex) { console.log("Error: Unable to read config.json"); return; }
|
||||
try { config = JSON.parse(fs.readFileSync(configFile)) } catch (e) { console.log('ERROR: Unable to parse ' + configFile + '.'); return null; }
|
||||
try { config = JSON.parse(fs.readFileSync(configFile)); } catch (e) { console.log('ERROR: Unable to parse ' + configFile + '.'); return null; }
|
||||
if (args.adddomain != null) {
|
||||
didSomething++;
|
||||
if (config.domains == null) { config.domains = {}; }
|
||||
|
|
Loading…
Reference in New Issue