From 978d4c145d8054458ca70910f0d05b5ea46935e5 Mon Sep 17 00:00:00 2001 From: till Date: Thu, 8 Mar 2012 17:00:24 +0100 Subject: [PATCH] * more output --- src/Composer/Repository/Vcs/SvnDriver.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Composer/Repository/Vcs/SvnDriver.php b/src/Composer/Repository/Vcs/SvnDriver.php index 380e565d0..2e602b0cc 100644 --- a/src/Composer/Repository/Vcs/SvnDriver.php +++ b/src/Composer/Repository/Vcs/SvnDriver.php @@ -75,8 +75,9 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface // this could be any failure, but let's see if it's auth related if ($status == 1) { if ($this->useAuth === false && strpos($output, 'authorization failed:') !== false) { - $this->svnUsername = $this->io->ask("What's your svn username?"); - $this->svnPassword = $this->io->ask("What's your svn password?"); + $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; // restart the process