Hi, On Tue, 11 Dec 2007, Charles Bailey wrote: > @@ -205,7 +205,10 @@ fi > # it is local > if base=$(get_repo_base "$repo"); then > repo="$base" > - local=yes > + if test -z "$depth" > + then > + local=yes > + fi > fi Or shorter: - local=yes + test -z "$depth" && local=yes Ciao, Dscho - 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