Merge pull request 'config-bugfix -> develop' (#13) from config-bugfix into develop

Reviewed-on: https://pond.waldn.net/git/knotteye/satyr/pulls/13
pull/18/head
knotteye 2020-10-30 07:40:20 -05:00
commit 2a121d27ee
1 changed files with 11 additions and 1 deletions

View File

@ -4,7 +4,17 @@ try {
var localconfig: Object = parse(read('config/config.yml'));
console.log('Config file found.');
} catch (e) {
console.log('No config file found. Exiting.');
if(e['reason']) {
console.log('Error parsing config on line '+e['mark']['line']+', with reason: '+e['reason']);
}
else {
console.log('Config Error: '+e['code']);
switch(e['code']){
case 'ENOENT':
console.log('Does the file exist?');
break;
}
}
process.exit();
}
const config: Object = {