Add initial atom.exe wrapper

This commit is contained in:
Kevin Sawicki
2014-12-11 10:50:06 -08:00
parent e83784e141
commit 42ab14c2cb

7
resources/win/atom.js Normal file
View File

@@ -0,0 +1,7 @@
var spawn = require('child_process').spawn;
var options = {
detached: true,
stdio: 'ignore'
}
spawn("C:\\Users\\kevin\\AppData\\Local\\atom\\app-0.156.0\\atom.exe", [], options);