remove -Z option from rustdoc theme checker tool

This commit is contained in:
Guillaume Gomez 2019-10-12 11:53:02 +02:00
parent 530d866aef
commit b004a50f73

View File

@ -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<_>>())