aboutsummaryrefslogtreecommitdiff
path: root/git-submodule.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-08-08 12:33:34 -0700
committerJunio C Hamano <gitster@pobox.com>2011-08-08 12:33:34 -0700
commit86c9cd8d256919b90c63167bac05e0802f52a244 (patch)
treea3985305cfd9e58c086a8b0062a18750ed6d35e2 /git-submodule.sh
parente85a43bc442d906b1cce112f154e54c216a0ab6e (diff)
parent7e60407f7a36bd1f7fd505f9aa9580a837fbb190 (diff)
downloadgit-86c9cd8d256919b90c63167bac05e0802f52a244.tar.gz
git-86c9cd8d256919b90c63167bac05e0802f52a244.tar.xz
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-xgit-submodule.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/git-submodule.sh b/git-submodule.sh
index bc1d3fa66..f46862f61 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")"
}