More debugging

This commit is contained in:
Matt Colyer
2013-12-18 11:17:00 -08:00
parent 2ffa989ba4
commit 3ac2cae355

View File

@@ -30,16 +30,12 @@ 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' : '');
process.stdout.write('0')
async.series([
console.log.bind(global, 'a'),
require('rimraf').bind(global, path.join(homeDir, '.atom')),
process.stdout.write.bind(global,'a'),
cp.safeExec.bind(global, 'git clean -dff'),
process.stdout.write.bind(global, 'b', gruntPath),
cp.safeExec.bind(global, gruntPath + ' ci --stack --no-color'),
process.stdout.write.bind(global, 'c'),
cp.safeExec.bind(global, 'node_modules/.bin/coffee script/upload-release'),
process.stdout.write.bind(global, 'd')
cp.safeExec.bind(global, 'node_modules/.bin/coffee script/upload-release')
], function(error) {
process.exit(error ? 1 : 0);
});