浏览代码

Do not output if we are about to retry a download

Jordi Boggiano 11 年之前
父节点
当前提交
c811eded7d
共有 1 个文件被更改,包括 1 次插入1 次删除
  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>");
         }