* more output
parent
59c1a7ff15
commit
978d4c145d
|
@ -75,8 +75,9 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
|
||||||
// this could be any failure, but let's see if it's auth related
|
// this could be any failure, but let's see if it's auth related
|
||||||
if ($status == 1) {
|
if ($status == 1) {
|
||||||
if ($this->useAuth === false && strpos($output, 'authorization failed:') !== false) {
|
if ($this->useAuth === false && strpos($output, 'authorization failed:') !== false) {
|
||||||
$this->svnUsername = $this->io->ask("What's your svn username?");
|
$this->io->write("The Subversion server ({$this->baseUrl}) request credentials:");
|
||||||
$this->svnPassword = $this->io->ask("What's your svn password?");
|
$this->svnUsername = $this->io->ask("Username");
|
||||||
|
$this->svnPassword = $this->io->ask("Password");
|
||||||
$this->useAuth = true;
|
$this->useAuth = true;
|
||||||
|
|
||||||
// restart the process
|
// restart the process
|
||||||
|
|
Loading…
Reference in New Issue