Skip to content

Commit

Permalink
Merge branch 'js/maint-merge-one-file-osx-expr' into maint
Browse files Browse the repository at this point in the history
* js/maint-merge-one-file-osx-expr:
  merge-one-file: fix "expr: non-numeric argument"
  • Loading branch information
gitster committed Oct 21, 2011
2 parents cec3e18 + d30db56 commit c510259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-merge-one-file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c510259

Please sign in to comment.