We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ebe6d3 commit 3c502ecCopy full SHA for 3c502ec
src/main.rs
@@ -92,12 +92,6 @@ impl ClippyCmd {
92
panic!("Usage of `--fix` requires `-Z unstable-options`");
93
}
94
95
- // Run the dogfood tests directly on nightly cargo. This is required due
96
- // to a bug in rustup.rs when running cargo on custom toolchains. See issue #3118.
97
- if env::var_os("CLIPPY_DOGFOOD").is_some() && cfg!(windows) {
98
- args.insert(0, "+nightly".to_string());
99
- }
100
-
101
let mut clippy_args: Vec<String> = old_args.collect();
102
if cargo_subcommand == "fix" && !clippy_args.iter().any(|arg| arg == "--no-deps") {
103
clippy_args.push("--no-deps".into());
0 commit comments