We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39edf2 commit a56c827Copy full SHA for a56c827
agent/agentcontainers/ignore/dir.go
@@ -18,7 +18,7 @@ func FilePathToParts(path string) []string {
18
return []string{}
19
}
20
21
- for segment := range strings.SplitSeq(filepath.Clean(path), "/") {
+ for segment := range strings.SplitSeq(filepath.Clean(path), string(filepath.Separator)) {
22
if segment != "" {
23
components = append(components, segment)
24
0 commit comments