diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-08 12:33:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-08 12:33:34 -0700 |
commit | 86c9cd8d256919b90c63167bac05e0802f52a244 (patch) | |
tree | a3985305cfd9e58c086a8b0062a18750ed6d35e2 /git-submodule.sh | |
parent | e85a43bc442d906b1cce112f154e54c216a0ab6e (diff) | |
parent | 7e60407f7a36bd1f7fd505f9aa9580a837fbb190 (diff) | |
download | git-86c9cd8d256919b90c63167bac05e0802f52a244.tar.gz |
Merge branch 'jl/submodule-update-quiet'
* jl/submodule-update-quiet:
submodule: update and add must honor --quiet flag
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index bc1d3fa663..f46862f61b 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -122,12 +122,17 @@ module_clone() path=$1 url=$2 reference="$3" + quiet= + if test -n "$GIT_QUIET" + then + quiet=-q + fi if test -n "$reference" then - git-clone "$reference" -n "$url" "$path" + git-clone $quiet "$reference" -n "$url" "$path" else - git-clone -n "$url" "$path" + git-clone $quiet -n "$url" "$path" fi || die "$(eval_gettext "Clone of '\$url' into submodule path '\$path' failed")" } |