1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Allow blaming of seemingly binary files in SVN

Summary:
Fixes T2388.
We check for binarity later.

Test Plan: Blamed file with 'application/x-shellscript' MIME type.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2388

Differential Revision: https://secure.phabricator.com/D4605
This commit is contained in:
vrana 2013-01-23 15:19:42 -08:00
parent ffd46df597
commit b3fa5492b4

View file

@ -13,8 +13,8 @@ final class DiffusionSvnFileContentQuery extends DiffusionFileContentQuery {
try {
list($corpus) = $repository->execxRemoteCommand(
'%s %s%s@%s',
$this->getNeedsBlame() ? 'blame' : 'cat',
'%C %s%s@%s',
$this->getNeedsBlame() ? 'blame --force' : 'cat',
$remote_uri,
$path,
$commit);