about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2019-10-12 11:53:02 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2019-11-18 16:43:48 +0100
commitb004a50f7395202bb6822f4ec8a098fdf9c7456a (patch)
tree9e8c5efbbb080b87e3f1db183d8ca576eaae081b /src
parent530d866aef047fa0f20a655676fd0b3ff4cbf86b (diff)
downloadrust-b004a50f7395202bb6822f4ec8a098fdf9c7456a.tar.gz
rust-b004a50f7395202bb6822f4ec8a098fdf9c7456a.zip
remove -Z option from rustdoc theme checker tool
Diffstat (limited to 'src')
-rw-r--r--src/tools/rustdoc-themes/main.rs1
1 files changed, 0 insertions, 1 deletions
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::<Vec<_>>())