Convert upload-release script to a grunt task

This commit is contained in:
Kevin Sawicki
2014-01-02 11:41:34 -08:00
parent 088a627468
commit 167e6dc1bf
3 changed files with 45 additions and 32 deletions

View File

@@ -35,9 +35,6 @@ cp.safeExec.bind(global, 'node script/bootstrap', function(error) {
cp.safeExec.bind(global, 'git clean -dff'),
cp.safeExec.bind(global, gruntPath + ' ci --gruntfile build/Gruntfile.coffee --stack --no-color'),
]
if (process.platform === 'darwin') {
tasks.push(cp.safeExec.bind(global, 'build/node_modules/.bin/coffee script/upload-release'))
}
async.series(tasks, function(error) {
process.exit(error ? 1 : 0);
});