Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kimono-koans committed Aug 5, 2024
1 parent d645a29 commit 4836be5
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/lookup/file_mounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@ impl<'a> MountsForFiles<'a> {
.par_iter()
.filter_map(|pd| match ProximateDatasetAndOptAlts::new(pd) {
Ok(prox_opt_alts) => Some(prox_opt_alts),
Err(_) => {
Err(err) => {
if !is_interactive_mode {
eprintln!(
"WARN: Filesystem upon which the path resides is not supported: {:?}",
pd.path_buf
)
eprintln!("WARN: {:?}", err)
}
None
}
Expand Down

0 comments on commit 4836be5

Please sign in to comment.