Use atom-bot's token as ATOM_ACCESS_TOKEN

This commit is contained in:
Kevin Sawicki
2013-12-04 11:38:25 -08:00
parent 58d09ec5a0
commit 63dc8863e3

View File

@@ -2,6 +2,10 @@
var safeExec = require('./utils/child-process-wrapper.js').safeExec;
var path = require('path');
// OAuth token for atom-bot
// TODO Remove once all repositories are public
process.env.ATOM_ACCESS_TOKEN = '362295be4c5258d3f7b967bbabae662a455ca2a7';
// Executes an array of commands one by one.
function executeCommands(commands, done, index) {
index = (index == undefined ? 0 : index);