Skip to content

Commit

Permalink
Add sentence to tell other options are ignored when running check-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Nov 18, 2019
1 parent e365120 commit 82872ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustdoc/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,12 +281,12 @@ impl Options {
// check for deprecated options
check_deprecated_options(&matches, &diag);

let to_check = matches.opt_strs("theme-checker");
let to_check = matches.opt_strs("check-theme");
if !to_check.is_empty() {
let paths = theme::load_css_paths(static_files::themes::LIGHT.as_bytes());
let mut errors = 0;

println!("rustdoc: [theme-checker] Starting tests!");
println!("rustdoc: [check-theme] Starting tests! (Ignoring all other arguments)");
for theme_file in to_check.iter() {
print!(" - Checking \"{}\"...", theme_file);
let (success, differences) = theme::test_theme_against(theme_file, &paths, &diag);
Expand Down Expand Up @@ -378,7 +378,7 @@ impl Options {
default theme", theme_s))
.warn("the theme may appear incorrect when loaded")
.help(&format!("to see what rules are missing, call `rustdoc \
--theme-checker \"{}\"`", theme_s))
--check-theme \"{}\"`", theme_s))
.emit();
}
themes.push(theme_file);
Expand Down

0 comments on commit 82872ad

Please sign in to comment.