1
0
Fork 0

Duplicate download progress

pull/3818/head
Hello 2015-03-05 16:27:27 +03:00
parent 26799f4244
commit ef0191ee6a
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ class RemoteFilesystem
$progression = round($bytesTransferred / $this->bytesMax * 100);
}
if ((0 === $progression % 5) && $progression !== $this->lastProgress) {
if ((0 === $progression % 5) && 100 !== $progression && $progression !== $this->lastProgress) {
$this->lastProgress = $progression;
$this->io->overwriteError(" Downloading: <comment>$progression%</comment>", false);
}