Remove hack that forces dogfood to run on nightly

This isn't necessary anymore, since we don't use a custom toolchain anymore
This commit is contained in:
flip1995 2021-03-05 10:31:21 +01:00
parent 5ebe6d3234
commit 3c502ec8a5
No known key found for this signature in database
GPG Key ID: 1CA0DF2AF59D68A5

View File

@ -92,12 +92,6 @@ impl ClippyCmd {
panic!("Usage of `--fix` requires `-Z unstable-options`");
}
// Run the dogfood tests directly on nightly cargo. This is required due
// to a bug in rustup.rs when running cargo on custom toolchains. See issue #3118.
if env::var_os("CLIPPY_DOGFOOD").is_some() && cfg!(windows) {
args.insert(0, "+nightly".to_string());
}
let mut clippy_args: Vec<String> = old_args.collect();
if cargo_subcommand == "fix" && !clippy_args.iter().any(|arg| arg == "--no-deps") {
clippy_args.push("--no-deps".into());