From a468869e2a3038f80a82431254fae3e91d18069f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 17 Jul 2013 01:50:22 -0700 Subject: [PATCH] Remove --quiet from git submodule operations --- configure | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 8f757a0715f..0a7d56b1a3b 100755 --- a/configure +++ b/configure @@ -749,18 +749,18 @@ then cd ${CFG_SRC_DIR} msg "git: submodule sync" - "${CFG_GIT}" submodule --quiet sync + "${CFG_GIT}" submodule sync msg "git: submodule update" - "${CFG_GIT}" submodule --quiet update --init + "${CFG_GIT}" submodule update --init need_ok "git failed" msg "git: submodule foreach sync" - "${CFG_GIT}" submodule --quiet foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi' + "${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi' need_ok "git failed" msg "git: submodule foreach update" - "${CFG_GIT}" submodule --quiet update --init --recursive + "${CFG_GIT}" submodule update --init --recursive need_ok "git failed" # NB: this is just for the sake of getting the submodule SHA1 values @@ -769,9 +769,9 @@ then "${CFG_GIT}" submodule status --recursive msg "git: submodule clobber" - "${CFG_GIT}" submodule --quiet foreach --recursive git clean -dxf + "${CFG_GIT}" submodule foreach --recursive git clean -dxf need_ok "git failed" - "${CFG_GIT}" submodule --quiet foreach --recursive git checkout . + "${CFG_GIT}" submodule foreach --recursive git checkout . need_ok "git failed" cd ${CFG_BUILD_DIR}