about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-08-01 20:21:25 +0200
committerRalf Jung <post@ralfj.de>2019-08-01 20:21:25 +0200
commit30f61dec30c01c260587760770da83b29d9cce6a (patch)
tree1f51285da42b7bfc42415cafbf214af1d9556d89 /src/bootstrap
parent0d8c97b465476c59da7228ad9a207e252b542b38 (diff)
downloadrust-30f61dec30c01c260587760770da83b29d9cce6a.tar.gz
rust-30f61dec30c01c260587760770da83b29d9cce6a.zip
replace what I think is an erroneous try_run_quiet by try_run
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index fec7f73f3b7..1f81efd16a7 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));
     }
 }