fixes #8179
parent
b73120cbbe
commit
7399638e43
|
@ -61,8 +61,9 @@ class HgDriver extends VcsDriver
|
||||||
// clean up directory and do a fresh clone into it
|
// clean up directory and do a fresh clone into it
|
||||||
$fs->removeDirectory($this->repoDir);
|
$fs->removeDirectory($this->repoDir);
|
||||||
|
|
||||||
$command = function ($url) {
|
$repoDir = $this->repoDir;
|
||||||
return sprintf('hg clone --noupdate %s %s', ProcessExecutor::escape($url), ProcessExecutor::escape($this->repoDir));
|
$command = function ($url) use ($repoDir) {
|
||||||
|
return sprintf('hg clone --noupdate %s %s', ProcessExecutor::escape($url), ProcessExecutor::escape($repoDir));
|
||||||
};
|
};
|
||||||
|
|
||||||
$hgUtils->runCommand($command, $this->url, $this->repoDir);
|
$hgUtils->runCommand($command, $this->url, $this->repoDir);
|
||||||
|
|
Loading…
Reference in New Issue