mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 04:39:16 +00:00
bootstrap.py: support verbose for submodules
This commit is contained in:
parent
46ebd832e3
commit
15c26c92cc
@ -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():
|
||||
|
Loading…
Reference in New Issue
Block a user