Skip to content

Commit

Permalink
Add debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Colyer committed Dec 18, 2013
1 parent 53451e0 commit 14f2444
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit 14f2444

Please sign in to comment.