|
@@ -228,7 +228,7 @@ class RemoteFilesystem
|
|
}
|
|
}
|
|
|
|
|
|
if ($this->progress && !$this->retry) {
|
|
if ($this->progress && !$this->retry) {
|
|
- $this->io->overwrite(" Downloading: <comment>100%</comment>");
|
|
|
|
|
|
+ $this->io->overwriteError(" Downloading: <comment>100%</comment>");
|
|
}
|
|
}
|
|
|
|
|
|
// handle copy command if download was successful
|
|
// handle copy command if download was successful
|
|
@@ -329,7 +329,7 @@ class RemoteFilesystem
|
|
|
|
|
|
if ((0 === $progression % 5) && $progression !== $this->lastProgress) {
|
|
if ((0 === $progression % 5) && $progression !== $this->lastProgress) {
|
|
$this->lastProgress = $progression;
|
|
$this->lastProgress = $progression;
|
|
- $this->io->overwrite(" Downloading: <comment>$progression%</comment>", false);
|
|
|
|
|
|
+ $this->io->overwriteError(" Downloading: <comment>$progression%</comment>", false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
@@ -371,7 +371,7 @@ class RemoteFilesystem
|
|
throw new TransportException("Invalid credentials for '" . $this->fileUrl . "', aborting.", $httpStatus);
|
|
throw new TransportException("Invalid credentials for '" . $this->fileUrl . "', aborting.", $httpStatus);
|
|
}
|
|
}
|
|
|
|
|
|
- $this->io->overwrite(' Authentication required (<info>'.parse_url($this->fileUrl, PHP_URL_HOST).'</info>):');
|
|
|
|
|
|
+ $this->io->overwriteError(' Authentication required (<info>'.parse_url($this->fileUrl, PHP_URL_HOST).'</info>):');
|
|
$username = $this->io->ask(' Username: ');
|
|
$username = $this->io->ask(' Username: ');
|
|
$password = $this->io->askAndHideAnswer(' Password: ');
|
|
$password = $this->io->askAndHideAnswer(' Password: ');
|
|
$this->io->setAuthentication($this->originUrl, $username, $password);
|
|
$this->io->setAuthentication($this->originUrl, $username, $password);
|