Skip to content

Commit c579a73

Browse files
committed
Clippy and fmt
1 parent 0a319da commit c579a73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/rv/src/config/ruby_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use camino::Utf8Path;
22
use miette::{IntoDiagnostic, Result};
3-
use tracing::debug;
43
use rayon::prelude::*;
4+
use tracing::debug;
55

66
use rv_ruby::Ruby;
77

crates/rv/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ async fn run() -> Result<()> {
251251
)
252252
.with(filter);
253253

254-
if !std::env::var("RV_DISABLE_INDICATIF").is_ok() {
254+
if std::env::var("RV_DISABLE_INDICATIF").is_err() {
255255
reg.with(indicatif_layer).init();
256256
} else {
257257
reg.init();

0 commit comments

Comments
 (0)