diff options
| author | bors <bors@rust-lang.org> | 2019-07-29 10:21:33 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-07-29 10:21:33 +0000 |
| commit | 04b88a9eba8abbac87eddcb2998beea09589c2c9 (patch) | |
| tree | 223e605a98621f5e8b360bd5556c1a32978bb0b1 /src | |
| parent | 8b94e9e9188b65df38a5f1ae723617dc2dfb3155 (diff) | |
| parent | ebd1bf70965c1edd9ed0c1a90332c1291525acf1 (diff) | |
| download | rust-04b88a9eba8abbac87eddcb2998beea09589c2c9.tar.gz rust-04b88a9eba8abbac87eddcb2998beea09589c2c9.zip | |
Auto merge of #63089 - kennytm:use-try-run-for-linkchecker, r=Mark-Simulacrum
Fix rustc-guide build failure ignoring no-fail-fast
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/test.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 0959734423e..459dc8d028e 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -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)); } } |
