convert path to posix by default (#31045) (#31053)

(cherry picked from commit da3f963987)

Co-authored-by: Will Browne <wbrowne@users.noreply.github.com>
This commit is contained in:
Grot (@grafanabot)
2021-02-09 16:28:02 +01:00
committed by GitHub
co-authored by Will Browne
parent 989f6933cd
commit a200db0d05
+1 -1
View File
@@ -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
})