1
0
Fork 0

Fix authentication issue with subversion 1.8

pull/2399/head
Wouter Wolters 2013-11-05 18:57:29 +01:00
parent e243b4edd1
commit 97d52968ab
1 changed files with 2 additions and 1 deletions

View File

@ -112,7 +112,8 @@ class Svn
// the error is not auth-related
if (false === stripos($output, 'Could not authenticate to server:')
&& false === stripos($output, 'authorization failed')
&& false === stripos($output, 'svn: E170001:')) {
&& false === stripos($output, 'svn: E170001:')
&& false === stripos($output, 'svn: E215004:')) {
throw new \RuntimeException($output);
}