1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02: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:
Dean Reilly 2013-10-29 18:55:05 -07:00 committed by epriestley
parent 00d9aae894
commit 62edbb8e21

View file

@ -73,6 +73,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker
$deleted_paths[$path] = $raw_info;
break;
case 'A':
case 'R':
$add_paths[$path] = $raw_info;
break;
}