Browse Source

Do not output if we are about to retry a download

Jordi Boggiano 11 years ago
parent
commit
c811eded7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Util/RemoteFilesystem.php

+ 1 - 1
src/Composer/Util/RemoteFilesystem.php

@@ -222,7 +222,7 @@ class RemoteFilesystem
             }
         }
 
-        if ($this->progress) {
+        if ($this->progress && !$this->retry) {
             $this->io->overwrite("    Downloading: <comment>100%</comment>");
         }