Fix authentication issue with subversion 1.8

main
Wouter Wolters 11 years ago
parent e243b4edd1
commit 97d52968ab

@ -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);
}

Loading…
Cancel
Save