Browse Source

Merge branch 'js/maint-merge-one-file-osx-expr' into maint

* js/maint-merge-one-file-osx-expr:
  merge-one-file: fix "expr: non-numeric argument"
maint
Junio C Hamano 13 years ago
parent
commit
c510259c02
  1. 2
      git-merge-one-file.sh

2
git-merge-one-file.sh

@ -117,7 +117,7 @@ case "${1:-.}${2:-.}${3:-.}" in @@ -117,7 +117,7 @@ case "${1:-.}${2:-.}${3:-.}" in

# If we do not have enough common material, it is not
# worth trying two-file merge using common subsections.
expr "$sz0" \< "$sz1" \* 2 >/dev/null || : >$orig
expr $sz0 \< $sz1 \* 2 >/dev/null || : >$orig
;;
*)
echo "Auto-merging $4"

Loading…
Cancel
Save