1
0
Fork 0

Previous change was wrong... We want to update to a specific version, so hg pull -u won't work.

pull/104/head
Per Bernhardt 2011-11-12 12:05:27 +01:00
parent ee508725c6
commit ad8e85ab32
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class HgDownloader implements DownloaderInterface
}
$this->enforceCleanDirectory($path);
system(sprintf('cd %s && hg pull -u %s', $path, $target->getSourceReference()));
system(sprintf('cd %s && hg pull && hg up %s', $path, escapeshellarg($target->getSourceReference())));
}
/**