From 30f61dec30c01c260587760770da83b29d9cce6a Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 1 Aug 2019 20:21:25 +0200 Subject: [PATCH] replace what I think is an erroneous try_run_quiet by try_run --- src/bootstrap/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index fec7f73f3b7e5..1f81efd16a7e4 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -1527,7 +1527,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); - try_run_quiet(builder, rustbook_cmd.arg("linkcheck").arg(&src)); + try_run(builder, rustbook_cmd.arg("linkcheck").arg(&src)); } }