Skip to content

Commit

Permalink
Made clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
awelc committed Feb 29, 2024
1 parent f62479b commit e745c64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ impl<'a> Compiler<'a> {
let Some(current_dir) = std::env::current_dir().ok() else {
return path;
};
let Ok(current_dir_vfs) = vsf_root.join(&current_dir.to_string_lossy()) else {
let Ok(current_dir_vfs) = vsf_root.join(current_dir.to_string_lossy()) else {
return path;
};
let Some(new_path) = diff_paths(path.to_string(), current_dir_vfs.as_str()) else {
Expand Down

0 comments on commit e745c64

Please sign in to comment.