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 61a4041 commit e2c734bCopy full SHA for e2c734b
walk.go
@@ -42,7 +42,7 @@ func (c *Client) walk(path string, walkFn filepath.WalkFunc) error {
42
43
sort.Strings(names)
44
for _, name := range names {
45
- err = c.walk(filepath.Join(path, name), walkFn)
+ err = c.walk(filepath.ToSlash(filepath.Join(path, name)), walkFn)
46
if err != nil {
47
return err
48
}
0 commit comments