1
0
Fork 0

Remove output if the token can be fetched automatically

pull/1238/merge
Jordi Boggiano 2012-10-21 18:03:18 +02:00
parent c53729793b
commit 31a1bd2c39
1 changed files with 0 additions and 1 deletions

View File

@ -53,7 +53,6 @@ class GitHub
{ {
// if available use token from git config // if available use token from git config
if (0 === $this->process->execute('git config github.accesstoken', $output)) { if (0 === $this->process->execute('git config github.accesstoken', $output)) {
$this->io->write('Using Github OAuth token stored in git config (github.accesstoken)');
$this->io->setAuthorization($originUrl, trim($output), 'x-oauth-basic'); $this->io->setAuthorization($originUrl, trim($output), 'x-oauth-basic');
return; return;