Skip to content

Commit

Permalink
Fix linter error (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBuchholz committed Feb 25, 2019
1 parent 9c899db commit c8fe65b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ sources.forEach(source => {
try {
module.analyze();
} catch (e) {
console.error(`An error occurred while processing ${source}`);
module.error(e.toString());
console.error(e);
process.exit(-1);
process.exit(-errorCount);
}
});

Expand Down

0 comments on commit c8fe65b

Please sign in to comment.