Skip to content

Commit

Permalink
Merge pull request #10018 from ember-cli/fix-unhandled-failures
Browse files Browse the repository at this point in the history
Trap unhandled failures
  • Loading branch information
kellyselden committed Sep 14, 2022
2 parents 51b46cc + 5e83301 commit 70f921b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/ember
Expand Up @@ -42,4 +42,7 @@ cli({

logger.info('Quitting "ember-cli" with exit code: %j', exitCode);
exit(exitCode);
}, function(err) {
console.log(err);
process.exit(-1);
});

0 comments on commit 70f921b

Please sign in to comment.