Skip to content

Commit

Permalink
bootstrap.py: support verbose for submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
ishitatsuyuki committed May 25, 2017
1 parent 46ebd83 commit 15c26c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 15c26c9

Please sign in to comment.