diff --git a/atom/browser/default_app/main.js b/atom/browser/default_app/main.js index 514268ea00..b120fa3884 100644 --- a/atom/browser/default_app/main.js +++ b/atom/browser/default_app/main.js @@ -17,15 +17,20 @@ if (argv._.length > 0) { try { require(path.resolve(argv._[0])); } catch(e) { - app.focus(); - dialog.showMessageBox({ - type: 'warning', - buttons: ['OK'], - title: 'Error opening app', - message: 'The app provided is not a valid atom-shell app, please read the docs on how to write one:', - detail: 'https://github.com/atom/atom-shell/tree/master/docs' - }); - process.exit(1); + if (e.code == 'MODULE_NOT_FOUND') { + app.focus(); + dialog.showMessageBox({ + type: 'warning', + buttons: ['OK'], + title: 'Error opening app', + message: 'The app provided is not a valid atom-shell app, please read the docs on how to write one:', + detail: 'https://github.com/atom/atom-shell/tree/master/docs' + }); + process.exit(1); + } else { + console.error('App throwed an error when running', e); + throw e; + } } } else if (argv.version) { console.log('v' + process.versions['atom-shell']);