diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-28 19:24:28 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-28 19:24:28 -0700 |
commit | 878ccb26941a15312b6676372e4688d42a73882b (patch) | |
tree | 2229bbd3431f2688d63da4acb6dd6bd5c0a94349 /git-fetch.sh | |
parent | d177e584255aad351bbbff14aba8e73afc008c75 (diff) | |
download | git-878ccb26941a15312b6676372e4688d42a73882b.tar.gz git-878ccb26941a15312b6676372e4688d42a73882b.tar.xz |
git-fetch: avoid using "case ... in (arm)"
NetBSD ash chokes on the optional open parenthesis for case arms. Inside
$(command substitution), however, bash barfs without. So adjust things
accordingly.
Originally pointed out by Dennis Stosberg.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-x | git-fetch.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git-fetch.sh b/git-fetch.sh index 280f62e4b..69bd81008 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -211,12 +211,12 @@ esac reflist=$(get_remote_refs_for_fetch "$@") if test "$tags" then - taglist=$(IFS=" " && + taglist=`IFS=" " && git-ls-remote $upload_pack --tags "$remote" | while read sha1 name do case "$name" in - (*^*) continue ;; + *^*) continue ;; esac if git-check-ref-format "$name" then @@ -224,7 +224,7 @@ then else echo >&2 "warning: tag ${name} ignored" fi - done) + done` if test "$#" -gt 1 then # remote URL plus explicit refspecs; we need to merge them. |