Remove checkmarks from volume mount display
Resolved mounts have already been filtered to existing sources, so
the existence check is always true. Drop the redundant checkmarks.
diff --git a/src/main.rs b/src/main.rs
index fe9dd99..c2a807e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -201,12 +201,7 @@ impl Ramekin {
.unwrap_or_else(|| format!(" {scope}"));
println!("{label}");
}
- println!(
- " {} {} → {}",
- check(&m.source),
- m.source.display(),
- m.display_target()
- );
+ println!(" {} → {}", m.source.display(), m.display_target());
}
}