Skip to content

Commit ebd1bf7

Browse files
committed
Fix rustc-guide build failure ignoring no-fail-fast.
This caused clippy not being built on Linux previously.
1 parent 023525d commit ebd1bf7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/bootstrap/test.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1524,9 +1524,7 @@ impl Step for RustcGuide {
15241524
fn run(self, builder: &Builder<'_>) {
15251525
let src = builder.src.join("src/doc/rustc-guide");
15261526
let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1527-
builder.run(rustbook_cmd
1528-
.arg("linkcheck")
1529-
.arg(&src));
1527+
try_run_quiet(builder, rustbook_cmd.arg("linkcheck").arg(&src));
15301528
}
15311529
}
15321530

0 commit comments

Comments
 (0)