Skip to content

Commit

Permalink
bootstrap: Make bootstrap verbose if requested
Browse files Browse the repository at this point in the history
Fixes: #42099
  • Loading branch information
devurandom committed May 24, 2017
1 parent 2aa6700 commit 604f716
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/bootstrap/bootstrap.py
Expand Up @@ -385,6 +385,10 @@ def build_bootstrap(self):
raise Exception("no cargo executable found at `%s`" % self.cargo())
args = [self.cargo(), "build", "--manifest-path",
os.path.join(self.rust_root, "src/bootstrap/Cargo.toml")]
if self.verbose:
args.append("--verbose")
if self.verbose > 1:
args.append("--verbose")
if self.use_locked_deps:
args.append("--locked")
if self.use_vendored_sources:
Expand Down

0 comments on commit 604f716

Please sign in to comment.