Output info about downloads even with --no-progress and show when reading from cache, refs #1410

main
Jordi Boggiano 12 years ago
parent b8ca4e1af9
commit b34e8554d2

@ -96,9 +96,14 @@ class FileDownloader implements DownloaderInterface
try {
if (!$this->cache || !$this->cache->copyTo($this->getCacheKey($package), $fileName)) {
$this->rfs->copy($hostname, $processedUrl, $fileName, $this->outputProgress);
if (!$this->outputProgress) {
$this->io->write(' Downloading');
}
if ($this->cache) {
$this->cache->copyFrom($this->getCacheKey($package), $fileName);
}
} else {
$this->io->write(' Loading from cache');
}
} catch (TransportException $e) {
if (404 === $e->getCode() && 'github.com' === $hostname) {

Loading…
Cancel
Save