You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous message omits which of the dozens of tools called tidy is
meant. And it's written in a way that one can easily miss the *not*,
thinking it reads "Note that `tidy` is the in-tree `src/tools/tidy` but
needs to be installed". The error message should hopefully help future
contributors.
Copy file name to clipboardExpand all lines: src/bootstrap/src/core/build_steps/test.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ impl Step for HtmlCheck {
201
201
if !check_if_tidy_is_installed(){
202
202
eprintln!("not running HTML-check tool because `tidy` is missing");
203
203
eprintln!(
204
-
"Note that `tidy` is notthe in-tree `src/tools/tidy` but needs to be installed"
204
+
"You need the HTML tidy tool https://www.html-tidy.org/, this tool is *not* part of the rust project and needs to be installed separately, for example via your package manager."
0 commit comments