1
0
Fork 0

Fix parsing of trunk in SvnDriver, fixes composer/satis#88

pull/2221/merge
Jordi Boggiano 2013-08-31 15:22:08 +02:00
parent ef072ff8c0
commit 2bf90b544a
1 changed files with 7 additions and 1 deletions

View File

@ -193,7 +193,13 @@ class SvnDriver extends VcsDriver
if (null === $this->branches) {
$this->branches = array();
$output = $this->execute('svn ls --verbose', $this->baseUrl . '/');
if (false === strpos($this->trunkPath, '/')) {
$trunkParent = $this->baseUrl . '/';
} else {
$trunkParent = $this->baseUrl . '/' . dirname($this->trunkPath) . '/';
}
$output = $this->execute('svn ls --verbose', $trunkParent);
if ($output) {
foreach ($this->process->splitLines($output) as $line) {
$line = trim($line);