Using $* in the _Here_ document at the end of cg-admin-setuprepro seriously confuses Bash v2.0.5b and causes lines produced by the _Here_ document to look something like ## EEnnaabbllee ggiitt--uuppddaattee--sseerrvveerr--iinnffoo The problem does not occur with Bash 3.1.x. The patch below fixes this by escaping the dollar in "$*". diff --git a/cg-admin-setuprepo b/cg-admin-setuprepo index d407798..a37b6ae 100755 --- a/cg-admin-setuprepo +++ b/cg-admin-setuprepo @@ -91,7 +91,7 @@ fi _git="$uri" cat <<_SCRIPT_EOF_ | $shell $shellarg -die() { echo "$*" >&2; exit 1; } +die() { echo "\$*" >&2; exit 1; } export GIT_DIR="$uri" - To unsubscribe from this list: 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