From 15c26c92ccbc3bbd26f6f3fa3ac72d3f1295991e Mon Sep 17 00:00:00 2001 From: Tatsuyuki Ishi Date: Thu, 25 May 2017 14:00:05 +0900 Subject: [PATCH] bootstrap.py: support verbose for submodules --- src/bootstrap/bootstrap.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 9a16a959fa489..971064fe9fede 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -571,11 +571,11 @@ def update_submodules(self): (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():