1
0
Fork 0

Cache credentials by default since that's the default svn behavior

pull/498/head
Jordi Boggiano 2012-03-24 23:08:43 +01:00
parent 8fb9c4bf3b
commit 862d4af274
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class Svn
/**
* @var bool
*/
protected $cacheCredentials = false;
protected $cacheCredentials = true;
/**
* @param string $url
@ -70,7 +70,7 @@ class Svn
$this->credentials['username'] = $this->io->ask("Username: ");
$this->credentials['password'] = $this->io->askAndHideAnswer("Password: ");
$this->cacheCredentials = $this->io->askConfirmation("Should Subversion cache these credentials? (yes/no) ", false);
$this->cacheCredentials = $this->io->askConfirmation("Should Subversion cache these credentials? (yes/no) ", true);
return $this;
}