diff --git a/git-merge-resolve.sh b/git-merge-resolve.sh index bb19da2cc..93bcfc2f5 100755 --- a/git-merge-resolve.sh +++ b/git-merge-resolve.sh @@ -25,7 +25,7 @@ do esac done -# Give up if we are given more than two remotes -- not handling octopus. +# Give up if we are given two or more remotes -- not handling octopus. case "$remotes" in ?*' '?*) exit 2 ;; diff --git a/git-merge-stupid.sh b/git-merge-stupid.sh index 4b1e59536..f612d4729 100755 --- a/git-merge-stupid.sh +++ b/git-merge-stupid.sh @@ -24,7 +24,7 @@ do esac done -# Give up if we are given more than two remotes -- not handling octopus. +# Give up if we are given two or more remotes -- not handling octopus. case "$remotes" in ?*' '?*) exit 2 ;;