Add --executed-from as first argument

This commit is contained in:
Kevin Sawicki 2014-12-11 12:54:25 -08:00
parent 3dced04aab
commit 8f77d65aab

View File

@ -3,7 +3,7 @@ var spawn = require('child_process').spawn;
var atomCommandPath = path.resolve(__dirname, '..', 'atom.exe');
var arguments = process.argv.slice(2);
arguments.push('--executed-from', process.cwd());
arguments.unshift('--executed-from', process.cwd());
var options = {detached: true, stdio: 'ignore'};
spawn(atomCommandPath, arguments, options);
process.exit(0);