1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Unbreak slop in commit change parser.

This commit is contained in:
epriestley 2011-10-02 12:37:25 -07:00
parent e4e5c39457
commit a8519c6837

View file

@ -32,7 +32,7 @@ class PhabricatorRepositoryGitCommitChangeParserWorker
// NOTE: "--pretty=format: " is to disable log output, we only want the
// part we get from "--raw".
list($raw) = $repository->execLocalCommand(
list($raw) = $repository->execxLocalCommand(
'log -n1 -M -C -B --find-copies-harder --raw -t '.
'--abbrev=40 --pretty=format: %s',
$commit->getCommitIdentifier());