1
0
Fork 0

Fix hg command to retrieve file content

pull/6501/head
Marc Schlatter 2017-06-22 11:29:50 +02:00
parent 60d68a06ac
commit 3ad5ce6874
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class HgDriver extends VcsDriver
public function getFileContent($file, $identifier)
{
$resource = sprintf('hg cat -r %s %s', ProcessExecutor::escape($identifier), ProcessExecutor::escape($file));
$this->process->execute(sprintf('hg cat -r %s', $resource), $content, $this->repoDir);
$this->process->execute($resource, $content, $this->repoDir);
if (!trim($content)) {
return;