We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa6700 commit 604f716Copy full SHA for 604f716
src/bootstrap/bootstrap.py
@@ -385,6 +385,10 @@ def build_bootstrap(self):
385
raise Exception("no cargo executable found at `%s`" % self.cargo())
386
args = [self.cargo(), "build", "--manifest-path",
387
os.path.join(self.rust_root, "src/bootstrap/Cargo.toml")]
388
+ if self.verbose:
389
+ args.append("--verbose")
390
+ if self.verbose > 1:
391
392
if self.use_locked_deps:
393
args.append("--locked")
394
if self.use_vendored_sources:
0 commit comments