mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-28 00:52:29 +03:00
28 lines
736 B
JavaScript
Executable File
28 lines
736 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
var cp = require('./utils/child-process-wrapper.js');
|
|
var runGrunt = require('./utils/run-grunt.js');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
process.chdir(path.dirname(__dirname));
|
|
|
|
if (process.platform === 'win32') {
|
|
process.env['PATH'] = process.env['PATH']
|
|
.split(';')
|
|
.filter(function(p) {
|
|
if (fs.existsSync(path.resolve(p, 'msbuild.exe'))) {
|
|
console.log('Excluding "' + p + '" from PATH to avoid msbuild.exe mismatch')
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
})
|
|
.join(';');
|
|
}
|
|
|
|
cp.safeExec('node script/bootstrap', function() {
|
|
// build/node_modules/.bin/grunt "$@"
|
|
var args = process.argv.slice(2);
|
|
runGrunt(args, process.exit);
|
|
});
|