From 0f1086fd68a93d9875adf814c1455f5e6a5af703 Mon Sep 17 00:00:00 2001 From: vrana Date: Thu, 3 Jan 2013 17:38:05 -0800 Subject: [PATCH] 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 --- .../PhabricatorRepositorySvnCommitChangeParserWorker.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/repository/worker/commitchangeparser/PhabricatorRepositorySvnCommitChangeParserWorker.php b/src/applications/repository/worker/commitchangeparser/PhabricatorRepositorySvnCommitChangeParserWorker.php index 8d5a1a7bfe..082c357508 100644 --- a/src/applications/repository/worker/commitchangeparser/PhabricatorRepositorySvnCommitChangeParserWorker.php +++ b/src/applications/repository/worker/commitchangeparser/PhabricatorRepositorySvnCommitChangeParserWorker.php @@ -247,7 +247,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker 'rawPath' => $full_to, 'rawTargetPath' => $full_from, 'rawTargetCommit' => $copy_rev, - 'rawDirect' => false, + 'rawDirect' => true, 'changeType' => $type, 'fileType' => $from_file_type, @@ -270,7 +270,7 @@ final class PhabricatorRepositorySvnCommitChangeParserWorker 'rawPath' => $full_from, 'rawTargetPath' => null, 'rawTargetCommit' => null, - 'rawDirect' => false, + 'rawDirect' => true, 'changeType' => $other_type, 'fileType' => $from_file_type,