Skip to content

Commit 15c26c9

Browse files
committed
bootstrap.py: support verbose for submodules
1 parent 46ebd83 commit 15c26c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bootstrap/bootstrap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -571,11 +571,11 @@ def update_submodules(self):
571571
(self.get_toml('jemalloc') or self.get_mk('CFG_JEMALLOC_ROOT'))))
572572
]
573573
run(["git", "submodule", "update",
574-
"--init"] + submodules, cwd=self.rust_root)
574+
"--init"] + submodules, cwd=self.rust_root, verbose=self.verbose)
575575
run(["git", "submodule", "-q", "foreach", "git",
576-
"reset", "-q", "--hard"], cwd=self.rust_root)
576+
"reset", "-q", "--hard"], cwd=self.rust_root, verbose=self.verbose)
577577
run(["git", "submodule", "-q", "foreach", "git",
578-
"clean", "-qdfx"], cwd=self.rust_root)
578+
"clean", "-qdfx"], cwd=self.rust_root, verbose=self.verbose)
579579

580580

581581
def bootstrap():

0 commit comments

Comments
 (0)