From 31a1bd2c392883036b42267a787871c5499b0c30 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sun, 21 Oct 2012 18:03:18 +0200 Subject: [PATCH] Remove output if the token can be fetched automatically --- src/Composer/Util/GitHub.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Composer/Util/GitHub.php b/src/Composer/Util/GitHub.php index 9cb4b160c..bca81178c 100644 --- a/src/Composer/Util/GitHub.php +++ b/src/Composer/Util/GitHub.php @@ -53,7 +53,6 @@ class GitHub { // if available use token from git config 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'); return;