NetBSD's default shell does not accept an opening parenthesis in a case switch. $ ./git-fetch ./git-fetch: 219: Syntax error: word unexpected (expecting ")") --- With this change applied to the next branch, all tests complete successfully on NetBSD 3.0 without having bash installed. git-fetch.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-fetch.sh b/git-fetch.sh index 280f62e..b8092a6 100755 --- a/git-fetch.sh +++ b/git-fetch.sh @@ -216,7 +216,7 @@ then while read sha1 name do case "$name" in - (*^*) continue ;; + *^*) continue ;; esac if git-check-ref-format "$name" then -- 1.3.3.g3c38f - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html