Skip to content

Commit

Permalink
Unrolled build for rust-lang#131941
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#131941 - lolbinarycat:compiletest-need-html-tidy, r=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
rust-timer authored Oct 20, 2024
2 parents 54791ef + 53974b1 commit ad2a929
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 ad2a929

Please sign in to comment.