summaryrefslogtreecommitdiffstats
path: root/target/htmlredirect.go
diff options
context:
space:
mode:
Diffstat (limited to 'target/htmlredirect.go')
-rw-r--r--target/htmlredirect.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/target/htmlredirect.go b/target/htmlredirect.go
index 7444dd42b..00f5d71de 100644
--- a/target/htmlredirect.go
+++ b/target/htmlredirect.go
@@ -46,6 +46,8 @@ type HTMLRedirectAlias struct {
PublishDir string
Templates *template.Template
AllowRoot bool // for the language redirects
+
+ Fs *hugofs.Fs
}
func (h *HTMLRedirectAlias) Translate(alias string) (aliasPath string, err error) {
@@ -145,5 +147,5 @@ func (h *HTMLRedirectAlias) Publish(path string, permalink string, page interfac
return
}
- return helpers.WriteToDisk(path, buffer, hugofs.Destination())
+ return helpers.WriteToDisk(path, buffer, h.Fs.Destination)
}