]> git.ipfire.org Git - thirdparty/git.git/commit - git-submodule.sh
git-submodule.sh: use "$quiet", not "$GIT_QUIET"
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Tue, 28 Jun 2022 10:05:33 +0000 (12:05 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 28 Jun 2022 20:13:18 +0000 (13:13 -0700)
commit2eec463739745d2110aa5462ba9547fa8d255ebb
tree4fa3adffe54dd45beee2694745b0f4e8a12ef883
parentb788fc671bf1862a72f9fe7256affd7d152b8a6f
git-submodule.sh: use "$quiet", not "$GIT_QUIET"

Remove the use of the "$GIT_QUIET" variable in favor of our own
"$quiet", ever since b3c5f5cb048 (submodule: move core cmd_update()
logic to C, 2022-03-15) we have not used the "say" function in
git-sh-setup.sh, which is the only thing that's affected by using
"GIT_QUIET".

We still want to support --quiet for our own use though, but let's use
our own variable for that. Now it's obvious that we only care about
passing "--quiet" to "git submodule--helper", and not to change the
output of any "say" invocation.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-submodule.sh