From d2512d6c30add204bf6bba3c4f03525373ddf6a7 Mon Sep 17 00:00:00 2001 From: zongz Date: Fri, 15 Mar 2024 15:37:50 +0800 Subject: [PATCH] fix: fix test case Signed-off-by: zongz --- pkg/path/path_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/path/path_windows.go b/pkg/path/path_windows.go index bf87c456..3c51295b 100644 --- a/pkg/path/path_windows.go +++ b/pkg/path/path_windows.go @@ -12,7 +12,7 @@ var NeedToSanitize map[rune]bool func init() { NeedToSanitize = map[rune]bool{ - '<': true, '>': true, ':': true, '"': true, '|': true, '?': true, '*': true, + '<': true, '>': true, ':': true, '"': true, '|': true, '?': true, '*': true, '\x00': true, } }