Auto merge of #63089 - kennytm:use-try-run-for-linkchecker, r=Mark-Simulacrum
Fix rustc-guide build failure ignoring no-fail-fast
This commit is contained in:
commit
04b88a9eba
1 changed files with 1 additions and 3 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue