Skip to content

Commit 30f61de

Browse files
committed
replace what I think is an erroneous try_run_quiet by try_run
1 parent 0d8c97b commit 30f61de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,7 @@ impl Step for RustcGuide {
15271527
fn run(self, builder: &Builder<'_>) {
15281528
let src = builder.src.join("src/doc/rustc-guide");
15291529
let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1530-
try_run_quiet(builder, rustbook_cmd.arg("linkcheck").arg(&src));
1530+
try_run(builder, rustbook_cmd.arg("linkcheck").arg(&src));
15311531
}
15321532
}
15331533

0 commit comments

Comments
 (0)