mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Add --executed-from as first argument
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user