소스 검색

Add another svn auth failed string to check (older svn server version)

DerManoMann 11 년 전
부모
커밋
abb1db54bb
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Composer/Util/Svn.php

+ 1 - 0
src/Composer/Util/Svn.php

@@ -108,6 +108,7 @@ 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:')) {
             throw new \RuntimeException($output);
         }