convert path to posix by default (#31045)

This commit is contained in:
Will Browne 2021-02-09 16:21:45 +01:00 committed by GitHub
parent 297ff9a168
commit da3f963987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -533,7 +533,7 @@ func collectPluginFilesWithin(rootDir string) ([]string, error) {
if err != nil { if err != nil {
return err return err
} }
files = append(files, file) files = append(files, filepath.ToSlash(file))
} }
return nil return nil
}) })