mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-04 22:33:47 +00:00
Fix Windows Ace path issue
Ace doesn't like Windows style filepath separators. Fixes #1178
This commit is contained in:
parent
e4ed9d6b02
commit
be0314b1d5
1 changed files with 5 additions and 0 deletions
|
@ -161,6 +161,11 @@ func (t *GoHTMLTemplate) AddTemplate(name, tpl string) error {
|
||||||
func (t *GoHTMLTemplate) AddAceTemplate(name, basePath, innerPath string, baseContent, innerContent []byte) error {
|
func (t *GoHTMLTemplate) AddAceTemplate(name, basePath, innerPath string, baseContent, innerContent []byte) error {
|
||||||
var base, inner *ace.File
|
var base, inner *ace.File
|
||||||
name = name[:len(name)-len(filepath.Ext(innerPath))] + ".html"
|
name = name[:len(name)-len(filepath.Ext(innerPath))] + ".html"
|
||||||
|
|
||||||
|
// Fixes issue #1178
|
||||||
|
basePath = strings.Replace(basePath, "\\", "/", -1)
|
||||||
|
innerPath = strings.Replace(innerPath, "\\", "/", -1)
|
||||||
|
|
||||||
if basePath != "" {
|
if basePath != "" {
|
||||||
base = ace.NewFile(basePath, baseContent)
|
base = ace.NewFile(basePath, baseContent)
|
||||||
inner = ace.NewFile(innerPath, innerContent)
|
inner = ace.NewFile(innerPath, innerContent)
|
||||||
|
|
Loading…
Reference in a new issue