Skip to content

Commit

Permalink
replace what I think is an erroneous try_run_quiet by try_run
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Aug 1, 2019
1 parent 0d8c97b commit 30f61de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 30f61de

Please sign in to comment.