Skip to content

Commit

Permalink
Auto merge of #63089 - kennytm:use-try-run-for-linkchecker, r=Mark-Si…
Browse files Browse the repository at this point in the history
…mulacrum

Fix rustc-guide build failure ignoring no-fail-fast
  • Loading branch information
bors committed Jul 29, 2019
2 parents 8b94e9e + ebd1bf7 commit 04b88a9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1524,9 +1524,7 @@ impl Step for RustcGuide {
fn run(self, builder: &Builder<'_>) {
let src = builder.src.join("src/doc/rustc-guide");
let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
builder.run(rustbook_cmd
.arg("linkcheck")
.arg(&src));
try_run_quiet(builder, rustbook_cmd.arg("linkcheck").arg(&src));
}
}

Expand Down

0 comments on commit 04b88a9

Please sign in to comment.