From 589dffbfbbe3b4484a4e9e2393c689d1fe38016f Mon Sep 17 00:00:00 2001 From: Gordon Schmidt Date: Thu, 31 May 2012 09:22:53 +0200 Subject: [PATCH] changed string to match authorization errors --- src/Composer/Util/Svn.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Svn.php b/src/Composer/Util/Svn.php index affb4d5ec..6c3309b45 100644 --- a/src/Composer/Util/Svn.php +++ b/src/Composer/Util/Svn.php @@ -100,7 +100,7 @@ class Svn } // the error is not auth-related - if (false === stripos($output, 'authorization failed:')) { + if (false === stripos($output, 'Could not authenticate to server:')) { throw new \RuntimeException($output); }