1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 06:42:41 +01:00

Fix breaking because of D935

Summary:
D935 missed one place of parseGitRelativeCommit() in
ArcanistExportWorkflow.

Test Plan: ran arc export and verify that it worked.

Reviewers: epriestley, tuomaspelkonen, aran

Reviewed By: aran

CC: aran

Differential Revision: 1015
This commit is contained in:
Jason Ge 2011-10-17 19:22:48 -07:00
parent 1da98a11f1
commit ab50afe583

View file

@ -173,8 +173,7 @@ EOTEXT
$parser = new ArcanistDiffParser(); $parser = new ArcanistDiffParser();
if ($repository_api instanceof ArcanistGitAPI) { if ($repository_api instanceof ArcanistGitAPI) {
$this->parseGitRelativeCommit( $repository_api->parseRelativeLocalCommit(
$repository_api,
$this->getArgument('paths')); $this->getArgument('paths'));
$diff = $repository_api->getFullGitDiff(); $diff = $repository_api->getFullGitDiff();
$changes = $parser->parseDiff($diff); $changes = $parser->parseDiff($diff);