Skip to content

Commit

Permalink
fix: fix test case
Browse files Browse the repository at this point in the history
Signed-off-by: zongz <[email protected]>
  • Loading branch information
zong-zhe committed Mar 15, 2024
1 parent 9a291e7 commit d2512d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/path/path_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit d2512d6

Please sign in to comment.