diff options
Diffstat (limited to 'git-apply-patch-script')
-rwxr-xr-x | git-apply-patch-script | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git-apply-patch-script b/git-apply-patch-script index 0849a3e68b..171c9f5f43 100755 --- a/git-apply-patch-script +++ b/git-apply-patch-script @@ -11,6 +11,9 @@ case "$#" in 1) echo >&2 "cannot handle unmerged diff on path $1." exit 1 ;; +8) + echo >&2 "cannot handle rename diff between $1 and $8 yet." + exit 1 ;; esac name="$1" tmp1="$2" hex1="$3" mode1="$4" tmp2="$5" hex2="$6" mode2="$7" |