Commit c3c2b4736d56fbf7022695d2bad13367c3e3f011

Authored by Adhidarma Hadiwinoto
1 parent bb09bc97eb
Exists in master

return, not process.exit

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -20,7 +20,7 @@ function advice(data, callback) {
20 20 }
21 21 catch(err) {
22 22 console.log('Error loading config file');
23   - process.exit(1);
  23 + return;
24 24 }
25 25 }
26 26