]> git.lizzy.rs Git - rust.git/blobdiff - src/main.rs
Fix all occurences of `needless_borrow` internally
[rust.git] / src / main.rs
index d13a831f5ff7d45a7d408ceabda334ff1d80804b..7bb80b1196e5900dd2169a91e6d7ab5977c918d6 100644 (file)
@@ -92,12 +92,6 @@ fn new<I>(mut old_args: I) -> Self
             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());