Skip to content
Snippets Groups Projects
Commit a1c10761 authored by copperyp's avatar copperyp
Browse files

fix web static file path slash error for win platform


Signed-off-by: default avatarcopperyp <copperyp@gmail.com>
parent 84b24172
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ func loadWebConfig(c webConfig) (http.Handler, http.Handler, *templates, error)
if err != nil {
return nil, nil, nil, fmt.Errorf("read static dir: %v", err)
}
themeFiles, err := fs.Sub(c.webFS, filepath.Join("themes", c.theme))
themeFiles, err := fs.Sub(c.webFS, filepath.ToSlash(filepath.Join("themes", c.theme)))
if err != nil {
return nil, nil, nil, fmt.Errorf("read themes dir: %v", err)
}
......@@ -133,7 +133,7 @@ func loadTemplates(c webConfig, templatesDir string) (*templates, error) {
if file.IsDir() {
continue
}
filenames = append(filenames, filepath.Join(templatesDir, file.Name()))
filenames = append(filenames, filepath.ToSlash(filepath.Join(templatesDir, file.Name())))
}
if len(filenames) == 0 {
return nil, fmt.Errorf("no files in template dir %q", templatesDir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment