about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTatsuyuki Ishi <ishitatsuyuki@gmail.com>2017-05-25 14:00:05 +0900
committerTatsuyuki Ishi <ishitatsuyuki@gmail.com>2017-05-25 14:00:05 +0900
commit15c26c92ccbc3bbd26f6f3fa3ac72d3f1295991e (patch)
tree37b7af1437d6356c2f271f17a598b24b674a2573
parent46ebd832e3762cd6bf163ddb2af5c0ed6575eaa6 (diff)
downloadrust-15c26c92ccbc3bbd26f6f3fa3ac72d3f1295991e.tar.gz
rust-15c26c92ccbc3bbd26f6f3fa3ac72d3f1295991e.zip
bootstrap.py: support verbose for submodules
-rw-r--r--src/bootstrap/bootstrap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py
index 9a16a959fa4..971064fe9fe 100644
--- a/src/bootstrap/bootstrap.py
+++ b/src/bootstrap/bootstrap.py
@@ -571,11 +571,11 @@ class RustBuild(object):
                                (self.get_toml('jemalloc') or self.get_mk('CFG_JEMALLOC_ROOT'))))
                      ]
         run(["git", "submodule", "update",
-                  "--init"] + submodules, cwd=self.rust_root)
+                  "--init"] + submodules, cwd=self.rust_root, verbose=self.verbose)
         run(["git", "submodule", "-q", "foreach", "git",
-                  "reset", "-q", "--hard"], cwd=self.rust_root)
+                  "reset", "-q", "--hard"], cwd=self.rust_root, verbose=self.verbose)
         run(["git", "submodule", "-q", "foreach", "git",
-                  "clean", "-qdfx"], cwd=self.rust_root)
+                  "clean", "-qdfx"], cwd=self.rust_root, verbose=self.verbose)
 
 
 def bootstrap():