mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
Add debugging
This commit is contained in:
parent
53451e0bcd
commit
14f2444883
@ -30,11 +30,16 @@ cp.safeExec.bind(global, 'node script/bootstrap', function(error) {
|
||||
process.exit(1);
|
||||
var async = require('async');
|
||||
var gruntPath = path.join('node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
|
||||
console.log('0')
|
||||
async.series([
|
||||
require('rimraf').bind(global, path.join(homeDir, '.atom')),
|
||||
console.log('a'),
|
||||
cp.safeExec.bind(global, 'git clean -dff'),
|
||||
console.log('b', gruntPath),
|
||||
cp.safeExec.bind(global, gruntPath + ' ci --stack --no-color'),
|
||||
console.log('c'),
|
||||
cp.safeExec.bind(global, 'node_modules/.bin/coffee script/upload-release')
|
||||
console.log('d'),
|
||||
], function(error) {
|
||||
process.exit(error ? 1 : 0);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user