1
0
Fork 0

Merge pull request #2399 from wouter90/subversion

Fix authentication issue with subversion 1.8
pull/2401/head
Jordi Boggiano 2013-11-05 10:18:34 -08:00
commit d1c166eb26
1 changed files with 2 additions and 1 deletions

View File

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