2013-09-09 02:54:08 +00:00
|
|
|
var app = require('app');
|
2013-07-17 08:21:33 +00:00
|
|
|
var argv = require('optimist').argv;
|
2013-07-10 08:10:38 +00:00
|
|
|
var dialog = require('dialog');
|
2013-07-17 08:21:33 +00:00
|
|
|
var path = require('path');
|
2013-04-17 12:05:43 +00:00
|
|
|
|
2013-09-09 02:54:08 +00: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-07-17 08:21:33 +00: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 07:20:59 +00:00
|
|
|
try {
|
|
|
|
require(path.resolve(argv._[0]));
|
|
|
|
} catch(e) {
|
|
|
|
if (e.code == 'MODULE_NOT_FOUND') {
|
2013-09-09 02:49:28 +00:00
|
|
|
console.error(e.stack);
|
2013-07-24 07:20:59 +00:00
|
|
|
console.error('Specified app is invalid');
|
|
|
|
process.exit(1);
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2013-07-17 08:21:33 +00:00
|
|
|
} else {
|
|
|
|
require('./default_app.js');
|
2013-04-15 07:39:54 +00:00
|
|
|
}
|