1
0
Fork 0

Update SvnDownloader.php

added --ignore-ancestry to the switch statement because it can be a problem with svn:properties
pull/2825/head
Sebastian Brandt 2014-03-19 17:00:30 +01:00
parent 70a20ebcc1
commit 16489dc084
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**