From 3ed908da29acbf2c8480040e0bb8078bc806765d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=97=A5=E5=A4=A9?= Date: Sat, 28 Mar 2026 03:15:50 +0800 Subject: [PATCH] Fix Windows cleanup path normalization --- cli/src/core/cleanup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {