mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
38 lines
1.3 KiB
JavaScript
Executable File
38 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node --harmony_collections
|
|
var cp = require('./utils/child-process-wrapper.js');
|
|
var path = require('path');
|
|
var os = require('os');
|
|
|
|
var removeCommand = process.platform === 'win32' ? 'del /F /Q /S ' : 'rm -rf ';
|
|
var productName = require('../package.json').productName;
|
|
|
|
process.chdir(path.dirname(__dirname));
|
|
var home = process.env[(process.platform === 'win32') ? 'USERPROFILE' : 'HOME'];
|
|
var tmpdir = process.platform === 'win32' ? os.tmpdir() : '/tmp';
|
|
|
|
// Windows: Use START as a way to ignore error if Atom.exe isnt running
|
|
var killatom = process.platform === 'win32' ? 'START taskkill /F /IM ' + productName + '.exe' : 'pkill -9 ' + productName + ' || true';
|
|
|
|
var commands = [
|
|
killatom,
|
|
[__dirname, '..', 'node_modules'],
|
|
[__dirname, '..', 'build', 'node_modules'],
|
|
[__dirname, '..', 'apm', 'node_modules'],
|
|
[__dirname, '..', 'vendor', 'apm', 'node_modules'],
|
|
[__dirname, '..', 'atom-shell'],
|
|
[home, '.atom', '.node-gyp'],
|
|
[home, '.atom', 'storage'],
|
|
[tmpdir, 'atom-build'],
|
|
[tmpdir, 'atom-cached-atom-shells'],
|
|
[tmpdir, 'atom-compile-cache'],
|
|
];
|
|
var run = function() {
|
|
var next = commands.shift();
|
|
if (!next)
|
|
process.exit(0);
|
|
if (Array.isArray(next))
|
|
next = removeCommand + path.resolve.apply(path.resolve, next);
|
|
cp.safeExec(next, run);
|
|
};
|
|
run();
|