mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Treat relocated files as added files in svn worker.
Summary: Relocated files aren't treated as newly created files by the worker. This can lead to the worker trying to look up information about deleted files in the wrong location. Test Plan: See T4030 Reviewers: #blessed_reviewers, epriestley Reviewed By: epriestley CC: epriestley, aran Maniphest Tasks: T4030 Differential Revision: https://secure.phabricator.com/D7432
This commit is contained in:
parent
00d9aae894
commit
62edbb8e21
1 changed files with 1 additions and 0 deletions
|
@ -73,6 +73,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker
|
|||
$deleted_paths[$path] = $raw_info;
|
||||
break;
|
||||
case 'A':
|
||||
case 'R':
|
||||
$add_paths[$path] = $raw_info;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue