浏览代码

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