Should not touch process.argv when starting the default_app.

This commit is contained in:
Cheng Zhao 2013-10-21 16:48:52 +08:00
Родитель 5ce66fca5c
Коммит 27be89d39a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,7 @@
var app = require('app');
var dialog = require('dialog');
var path = require('path');
var optimist = require('optimist');
// Quit when all windows are closed and no other one is listening to this.
app.on('window-all-closed', function() {
@ -8,8 +9,7 @@ app.on('window-all-closed', function() {
app.quit();
});
process.argv.splice(1, 0, 'dummyScript');
var argv = require('optimist').argv;
var argv = optimist(process.argv.slice(1)).argv;
// Start the specified app if there is one specified in command line, otherwise
// start the default app.