about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2019-07-29 01:51:46 +0800
committerkennytm <kennytm@gmail.com>2019-07-29 11:52:50 +0800
commitebd1bf70965c1edd9ed0c1a90332c1291525acf1 (patch)
tree4fd1e2141ab306321c811f5d9c9daa6b6322c9f8 /src/bootstrap
parent023525dbda35748a10713471b948974b68a1c2cc (diff)
Fix rustc-guide build failure ignoring no-fail-fast.
This caused clippy not being built on Linux previously.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs4
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));
     }
 }