mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
f9415e37d0
Summary: Otherwise svn diff fails when the file is binary but the "svn:mime-type = application/x-shellscript" is missing in it. Test Plan: arc diff succeeded against deleting a binary file which doesn't have svn:mime-type = application/x-shellscript. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D2915
6 lines
57 B
Bash
Executable file
6 lines
57 B
Bash
Executable file
#!/bin/sh
|
|
|
|
diff "$@"
|
|
if [ "$?" = "2" ]; then
|
|
exit 1
|
|
fi
|