diff --git a/cli/src/core/cleanup.rs b/cli/src/core/cleanup.rs index a9f9c3f..f4017ce 100644 --- a/cli/src/core/cleanup.rs +++ b/cli/src/core/cleanup.rs @@ -233,7 +233,7 @@ fn resolve_absolute_path(raw_path: &str) -> PathBuf { } fn path_to_string(path: &Path) -> String { - path.to_string_lossy().into_owned() + normalize_path(path).to_string_lossy().into_owned() } fn path_to_glob_string(path: &Path) -> String {