I have tested this OK on
* Windows 10 (it did not work before this commit)
* MacOS
Fixes #4968
"fmt"
"io"
"path"
+ "path/filepath"
"strings"
"github.com/bep/go-tocss/scss"
sourcePath = strings.TrimPrefix(sourcePath, t.c.rs.WorkingDir+helpers.FilePathSeparator)
}
+ // This needs to be Unix-style slashes, even on Windows.
+ // See https://github.com/gohugoio/hugo/issues/4968
+ sourcePath = filepath.ToSlash(sourcePath)
+
// This is a workaround for what looks like a bug in Libsass. But
// getting this resolution correct in tools like Chrome Workspaces
// is important enough to go this extra mile.