mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +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:
parent
1da98a11f1
commit
ab50afe583
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue