From: bep Date: Tue, 14 Apr 2015 17:58:37 +0000 (+0200) Subject: Fix potential Windows path issue with Pygments cache X-Git-Tag: v0.14~126 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=be540f5b;p=brevno-suite%2Fhugo Fix potential Windows path issue with Pygments cache --- diff --git a/helpers/pygments.go b/helpers/pygments.go index ca588870..8223759c 100644 --- a/helpers/pygments.go +++ b/helpers/pygments.go @@ -20,6 +20,7 @@ import ( "io" "io/ioutil" "os/exec" + "path/filepath" "strings" "github.com/spf13/hugo/hugofs" @@ -62,7 +63,7 @@ func Highlight(code string, lexer string) string { io.WriteString(hash, style) io.WriteString(hash, noclasses) - cachefile := fmt.Sprintf("%s/pygments-%x", viper.GetString("CacheDir"), hash.Sum(nil)) + cachefile := filepath.Join(viper.GetString("CacheDir"), fmt.Sprintf("pygments-%x", hash.Sum(nil))) exists, err := Exists(cachefile, fs) if err != nil { jww.ERROR.Print(err.Error())