Skip to content

Commit

Permalink
fix: remove canoncialize from get_paths for symlinks, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
erikreinert committed Jul 19, 2024
1 parent da6b3ac commit 50e02ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/paths.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ where
{
return None;
}
path.canonicalize().ok()
return Some(path.to_path_buf());
})
.collect();

Expand Down

0 comments on commit 50e02ab

Please sign in to comment.