Skip to content

Commit a468869

Browse files
committed
Remove --quiet from git submodule operations
1 parent 9db1903 commit a468869

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

configure

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -749,18 +749,18 @@ then
749749
cd ${CFG_SRC_DIR}
750750

751751
msg "git: submodule sync"
752-
"${CFG_GIT}" submodule --quiet sync
752+
"${CFG_GIT}" submodule sync
753753

754754
msg "git: submodule update"
755-
"${CFG_GIT}" submodule --quiet update --init
755+
"${CFG_GIT}" submodule update --init
756756
need_ok "git failed"
757757

758758
msg "git: submodule foreach sync"
759-
"${CFG_GIT}" submodule --quiet foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
759+
"${CFG_GIT}" submodule foreach --recursive 'if test -e .gitmodules; then git submodule sync; fi'
760760
need_ok "git failed"
761761

762762
msg "git: submodule foreach update"
763-
"${CFG_GIT}" submodule --quiet update --init --recursive
763+
"${CFG_GIT}" submodule update --init --recursive
764764
need_ok "git failed"
765765

766766
# NB: this is just for the sake of getting the submodule SHA1 values
@@ -769,9 +769,9 @@ then
769769
"${CFG_GIT}" submodule status --recursive
770770

771771
msg "git: submodule clobber"
772-
"${CFG_GIT}" submodule --quiet foreach --recursive git clean -dxf
772+
"${CFG_GIT}" submodule foreach --recursive git clean -dxf
773773
need_ok "git failed"
774-
"${CFG_GIT}" submodule --quiet foreach --recursive git checkout .
774+
"${CFG_GIT}" submodule foreach --recursive git checkout .
775775
need_ok "git failed"
776776

777777
cd ${CFG_BUILD_DIR}

0 commit comments

Comments
 (0)