mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
ArcanistBundle: fix attribution of $old_phid when building binary changes
Summary: The variable $old_phid was not being set in a certain situation in buildBinaryChange(), and that was causing the following error, during `arc patch <revision>`: "the patch applies to <file> (<hash>), which does not match the current contents." and hence it was failing to download/apply the patch. Signed-off-by: Sergio Correia <sergio@correia.cc> Test Plan: I spotted the problem in a revision where I was renaming some images, which are binary. Reviewers: epriestley, vrana, btrahan Reviewed By: btrahan CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3925
This commit is contained in:
parent
0a6444790d
commit
02b185571f
1 changed files with 1 additions and 1 deletions
|
@ -646,7 +646,7 @@ final class ArcanistBundle {
|
|||
$old_phid = null;
|
||||
} else {
|
||||
$old_data = null;
|
||||
$old_binary->getMetadata('old:binary-phid');
|
||||
$old_phid = $old_binary->getMetadata('old:binary-phid');
|
||||
}
|
||||
} else {
|
||||
$old_data = $change->getOriginalFileData();
|
||||
|
|
Loading…
Reference in a new issue