소스 검색

Update SvnDownloader.php

added --ignore-ancestry to the switch statement because it can be a problem with svn:properties
Sebastian Brandt 11 년 전
부모
커밋
16489dc084
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Composer/Downloader/SvnDownloader.php

+ 1 - 1
src/Composer/Downloader/SvnDownloader.php

@@ -48,7 +48,7 @@ class SvnDownloader extends VcsDownloader
         }
 
         $this->io->write("    Checking out " . $ref);
-        $this->execute($url, "svn switch", sprintf("%s/%s", $url, $ref), $path);
+        $this->execute($url, "svn switch --ignore-ancestry", sprintf("%s/%s", $url, $ref), $path);
     }
 
     /**