Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove '--quiet' option from git commands in /configure. #400

Merged
merged 1 commit into from Apr 29, 2013
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -370,21 +370,21 @@ then
"${CFG_GIT}" submodule status --recursive

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"

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}
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.