mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
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).disconnect();
|
|
process.exit();
|