Browse Source

Add oauth example file for maintainers

pull/1191/merge
jlukic 10 years ago
parent
commit
842f9469af
2 changed files with 3 additions and 1 deletions
  1. 3
      gulpfile.js
  2. 1
      tasks/admin/oauth.js.example.js

3
gulpfile.js

@ -623,7 +623,8 @@ gulp.task('release', false, function() {
// Bump package.json
// Bump composer.json
if(!oAuthToken) {
module.error('Must add node include tasks/admin/oauth.js with oauth token for GitHub');
console.error('Must add node include tasks/admin/oauth.js with oauth token for GitHub');
return;
}
github = new githubAPI({

1
tasks/admin/oauth.js.example.js

@ -0,0 +1 @@
module.exports = 'OAUTH-KEY-HERE';
Loading…
Cancel
Save