1
0
Fork 0

HgDriver: don't run command in non-existing directory

pull/8386/head
Stephan Vock 2019-10-14 12:49:59 +01:00 committed by Rob
parent 8d9b822413
commit 73b269fade
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class HgDriver extends VcsDriver
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, null);
}
}