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:
parent
ffd46df597
commit
b3fa5492b4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue