From 16489dc08435ff9f51bb403084e35fa4dffb03be Mon Sep 17 00:00:00 2001 From: Sebastian Brandt Date: Wed, 19 Mar 2014 17:00:30 +0100 Subject: [PATCH] Update SvnDownloader.php added --ignore-ancestry to the switch statement because it can be a problem with svn:properties --- src/Composer/Downloader/SvnDownloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Downloader/SvnDownloader.php b/src/Composer/Downloader/SvnDownloader.php index 8094a00dd..c31c3df6b 100644 --- a/src/Composer/Downloader/SvnDownloader.php +++ b/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); } /**