Skip to content

Commit

Permalink
Fix rustc-guide build failure ignoring no-fail-fast.
Browse files Browse the repository at this point in the history
This caused clippy not being built on Linux previously.
  • Loading branch information
kennytm committed Jul 29, 2019
1 parent 023525d commit ebd1bf7
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 ebd1bf7

Please sign in to comment.