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 0a319da commit c579a73Copy full SHA for c579a73
crates/rv/src/config/ruby_cache.rs
@@ -1,7 +1,7 @@
1
use camino::Utf8Path;
2
use miette::{IntoDiagnostic, Result};
3
-use tracing::debug;
4
use rayon::prelude::*;
+use tracing::debug;
5
6
use rv_ruby::Ruby;
7
crates/rv/src/main.rs
@@ -251,7 +251,7 @@ async fn run() -> Result<()> {
251
)
252
.with(filter);
253
254
- if !std::env::var("RV_DISABLE_INDICATIF").is_ok() {
+ if std::env::var("RV_DISABLE_INDICATIF").is_err() {
255
reg.with(indicatif_layer).init();
256
} else {
257
reg.init();
0 commit comments