Commit da3f9639 by Will Browne Committed by GitHub

convert path to posix by default (#31045)

parent 297ff9a1
......@@ -533,7 +533,7 @@ func collectPluginFilesWithin(rootDir string) ([]string, error) {
if err != nil {
return err
}
files = append(files, file)
files = append(files, filepath.ToSlash(file))
}
return nil
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment