Add debugging

This commit is contained in:
Matt Colyer 2013-12-18 11:03:21 -08:00
parent 53451e0bcd
commit 14f2444883

View File

@ -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);
});