Skip to content

Commit

Permalink
Rollup merge of #131941 - lolbinarycat:compiletest-need-html-tidy, r=…
Browse files Browse the repository at this point in the history
…clubby789

compiletest: disambiguate html-tidy from rust tidy tool

when i first saw this error message i was very confused, i thought it was talking about `src/tools/tidy`.  now it should be much more clear what tool should be installed.
  • Loading branch information
Zalathar authored Oct 20, 2024
2 parents 0bfc49b + 53974b1 commit 28a5ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/compiletest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn main() {
let config = Arc::new(parse_config(env::args().collect()));

if !config.has_tidy && config.mode == Mode::Rustdoc {
eprintln!("warning: `tidy` is not installed; diffs will not be generated");
eprintln!("warning: `tidy` (html-tidy.org) is not installed; diffs will not be generated");
}

if !config.profiler_runtime && config.mode == Mode::CoverageRun {
Expand Down

0 comments on commit 28a5ef9

Please sign in to comment.