2013-09-09 10:54:08 +08:00
|
|
|
var app = require('app');
|
2013-07-10 16:10:38 +08:00
|
|
|
var dialog = require('dialog');
|
2013-07-17 16:21:33 +08:00
|
|
|
var path = require('path');
|
2013-10-21 16:48:52 +08:00
|
|
|
var optimist = require('optimist');
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2013-09-09 10:54:08 +08:00
|
|
|
// Quit when all windows are closed and no other one is listening to this.
|
|
|
|
app.on('window-all-closed', function() {
|
|
|
|
if (app.listeners('window-all-closed').length == 1)
|
|
|
|
app.quit();
|
|
|
|
});
|
|
|
|
|
2013-10-21 16:48:52 +08:00
|
|
|
var argv = optimist(process.argv.slice(1)).argv;
|
2013-10-03 11:36:17 +08:00
|
|
|
|
2013-07-17 16:21:33 +08:00
|
|
|
// Start the specified app if there is one specified in command line, otherwise
|
|
|
|
// start the default app.
|
|
|
|
if (argv._.length > 0) {
|
2013-07-24 15:20:59 +08:00
|
|
|
try {
|
|
|
|
require(path.resolve(argv._[0]));
|
|
|
|
} catch(e) {
|
|
|
|
if (e.code == 'MODULE_NOT_FOUND') {
|
2013-09-09 10:49:28 +08:00
|
|
|
console.error(e.stack);
|
2013-07-24 15:20:59 +08:00
|
|
|
console.error('Specified app is invalid');
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2013-10-03 11:36:17 +08:00
|
|
|
} else if (argv.version) {
|
2013-10-03 11:48:13 +08:00
|
|
|
console.log('v' + process.versions['atom-shell']);
|
2013-10-03 11:36:17 +08:00
|
|
|
process.exit(0);
|
2013-07-17 16:21:33 +08:00
|
|
|
} else {
|
|
|
|
require('./default_app.js');
|
2013-04-15 15:39:54 +08:00
|
|
|
}
|