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 9852087 commit 1f8c1c4Copy full SHA for 1f8c1c4
src/cargo/util/config.rs
@@ -213,7 +213,7 @@ impl Config {
213
.and_then(|tool| paths::resolve_executable(&tool))
214
.is_ok();
215
let has_rustup_env = std::env::var("RUSTUP_TOOLCHAIN").is_ok();
216
- if dbg!(rustup_in_path) || dbg!(has_rustup_env) {
+ if rustup_in_path || has_rustup_env {
217
failure::format_err!("{}: please run `rustup component add clippy`", e)
218
} else {
219
failure::format_err!("{}: please install clippy component", e)
0 commit comments