1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-22 21:40:55 +01:00

Mark SVN dir copy as direct change for its files

Test Plan: HHVM currently core dumps so I didn't test it.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4343
This commit is contained in:
vrana 2013-01-03 17:38:05 -08:00
parent 9aa772ed00
commit 0f1086fd68

View file

@ -247,7 +247,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker
'rawPath' => $full_to, 'rawPath' => $full_to,
'rawTargetPath' => $full_from, 'rawTargetPath' => $full_from,
'rawTargetCommit' => $copy_rev, 'rawTargetCommit' => $copy_rev,
'rawDirect' => false, 'rawDirect' => true,
'changeType' => $type, 'changeType' => $type,
'fileType' => $from_file_type, 'fileType' => $from_file_type,
@ -270,7 +270,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker
'rawPath' => $full_from, 'rawPath' => $full_from,
'rawTargetPath' => null, 'rawTargetPath' => null,
'rawTargetCommit' => null, 'rawTargetCommit' => null,
'rawDirect' => false, 'rawDirect' => true,
'changeType' => $other_type, 'changeType' => $other_type,
'fileType' => $from_file_type, 'fileType' => $from_file_type,