From 061d91b4a817938ed7312283b5b6b5198517395f Mon Sep 17 00:00:00 2001 From: till Date: Fri, 9 Mar 2012 14:13:29 +0100 Subject: [PATCH] whitespace --- src/Composer/Repository/Vcs/SvnDriver.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Composer/Repository/Vcs/SvnDriver.php b/src/Composer/Repository/Vcs/SvnDriver.php index d6b6b8daf..3daea8f55 100644 --- a/src/Composer/Repository/Vcs/SvnDriver.php +++ b/src/Composer/Repository/Vcs/SvnDriver.php @@ -72,10 +72,13 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface $svnCommand, $output ); + // this could be any failure, but let's see if it's auth related if ($status == 1 && $this->io->isInteractive()) { if ($this->useAuth === false && strpos($output, 'authorization failed:') !== false) { + $this->io->write("The Subversion server ({$this->baseUrl}) request credentials:"); + $this->svnUsername = $this->io->ask("Username"); $this->svnPassword = $this->io->ask("Password"); $this->useAuth = true;