diff options
| author | bors <bors@rust-lang.org> | 2013-07-18 15:34:38 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-18 15:34:38 -0700 |
| commit | 3bcc196f8297af16ffcfeae98f20ed0496344e84 (patch) | |
| tree | 82efcfa0c539196e76b14786e220027e675d8f64 | |
| parent | 78f8b407e3ab5590a57467fce1febd5289bf7fe5 (diff) | |
| parent | a468869e2a3038f80a82431254fae3e91d18069f (diff) | |
| download | rust-3bcc196f8297af16ffcfeae98f20ed0496344e84.tar.gz rust-3bcc196f8297af16ffcfeae98f20ed0496344e84.zip | |
auto merge of #7847 : alexcrichton/rust/verbose-submodule, r=pnkfelix
Closes #3816. Without --quiet, git shows its own progress report of download. It's not really a progress bar, but it's a percentage and files incoming. This will help initial downloads of LLVM to not cause people to wonder why their configure script is hanging for hours. r? @graydon
| -rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure index 7138c395513..3e0355307bc 100755 --- a/configure +++ b/configure @@ -750,18 +750,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 @@ -770,9 +770,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} |
