about summary refs log tree commit diff
diff options
context:
space:
mode:
-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():