From f633ab503ed95b3be0ccc08f533c9eff23a511da Mon Sep 17 00:00:00 2001 From: Sebastian Brandt Date: Fri, 28 Mar 2014 16:27:00 +0100 Subject: [PATCH] Update SvnDownloader.php --- src/Composer/Downloader/SvnDownloader.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Composer/Downloader/SvnDownloader.php b/src/Composer/Downloader/SvnDownloader.php index c31c3df6b..efb9faa25 100644 --- a/src/Composer/Downloader/SvnDownloader.php +++ b/src/Composer/Downloader/SvnDownloader.php @@ -47,8 +47,13 @@ class SvnDownloader extends VcsDownloader throw new \RuntimeException('The .svn directory is missing from '.$path.', see http://getcomposer.org/commit-deps for more information'); } + $ignoreAncestryCommand = ""; + if ((int)$this->process->execute("svn --version | egrep 'version [0-9\.]+' -o | tr -d 'version .'") >= 170) { + $ignoreAncestryCommand = " --ignore-ancestry"; + } + $this->io->write(" Checking out " . $ref); - $this->execute($url, "svn switch --ignore-ancestry", sprintf("%s/%s", $url, $ref), $path); + $this->execute($url, "svn switch" . $ignoreAncestry, sprintf("%s/%s", $url, $ref), $path); } /**