From: Guillaume Gomez Date: Sat, 12 Oct 2019 09:53:02 +0000 (+0200) Subject: remove -Z option from rustdoc theme checker tool X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=b004a50f7395202bb6822f4ec8a098fdf9c7456a;p=rust.git remove -Z option from rustdoc theme checker tool --- diff --git a/src/tools/rustdoc-themes/main.rs b/src/tools/rustdoc-themes/main.rs index 87c1de3e715..a549b0d0efa 100644 --- a/src/tools/rustdoc-themes/main.rs +++ b/src/tools/rustdoc-themes/main.rs @@ -40,7 +40,6 @@ fn main() { } let arg_name = "--check-theme".to_owned(); let status = Command::new(rustdoc_bin) - .args(&["-Z", "unstable-options"]) .args(&themes.iter() .flat_map(|t| vec![&arg_name, t].into_iter()) .collect::>())