From 63dc8863e366ac0bff00f1a9e03169528e154ee9 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 4 Dec 2013 11:38:25 -0800 Subject: [PATCH] Use atom-bot's token as ATOM_ACCESS_TOKEN --- script/bootstrap | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script/bootstrap b/script/bootstrap index ae69ad478..7f9a978fa 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -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);