Skip to content

Commit 1f8c1c4

Browse files
committed
fix: remove dbg macro calls
1 parent 9852087 commit 1f8c1c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/util/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ impl Config {
213213
.and_then(|tool| paths::resolve_executable(&tool))
214214
.is_ok();
215215
let has_rustup_env = std::env::var("RUSTUP_TOOLCHAIN").is_ok();
216-
if dbg!(rustup_in_path) || dbg!(has_rustup_env) {
216+
if rustup_in_path || has_rustup_env {
217217
failure::format_err!("{}: please run `rustup component add clippy`", e)
218218
} else {
219219
failure::format_err!("{}: please install clippy component", e)

0 commit comments

Comments
 (0)