mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
b0da17701b
Closes #905
33 lines
1.1 KiB
JavaScript
Executable File
33 lines
1.1 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
var safeExec = require('./utils/child-process-wrapper.js').safeExec;
|
|
var path = require('path');
|
|
|
|
// Executes an array of commands one by one.
|
|
function executeCommands(commands, done, index) {
|
|
index = (index == undefined ? 0 : index);
|
|
if (index < commands.length)
|
|
safeExec(commands[index], executeCommands.bind(this, commands, done, index + 1));
|
|
else
|
|
done(null);
|
|
}
|
|
|
|
// Join multiple commands into one line.
|
|
function joinCommands() {
|
|
var commandSeparator = process.platform == 'win32' ? '&' : ';';
|
|
return Array.prototype.slice.call(arguments, 0).join(commandSeparator);
|
|
}
|
|
|
|
var echoNewLine = process.platform == 'win32' ? 'echo.' : 'echo';
|
|
var commands = [
|
|
'git submodule --quiet sync',
|
|
'git submodule --quiet update --recursive --init',
|
|
joinCommands('cd vendor/apm', 'npm install --silent .'),
|
|
'npm install --silent vendor/apm',
|
|
echoNewLine,
|
|
'node node_modules/atom-package-manager/bin/apm clean',
|
|
'node node_modules/atom-package-manager/bin/apm install --silent',
|
|
];
|
|
|
|
process.chdir(path.dirname(__dirname));
|
|
executeCommands(commands, process.exit);
|