From 862d4af274c97d2586832714f54c1a17170d209a Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 24 Mar 2012 23:08:43 +0100 Subject: [PATCH] Cache credentials by default since that's the default svn behavior --- src/Composer/Util/Svn.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Util/Svn.php b/src/Composer/Util/Svn.php index 0688b8451..7de84ef85 100644 --- a/src/Composer/Util/Svn.php +++ b/src/Composer/Util/Svn.php @@ -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; }