summaryrefslogtreecommitdiffstats
path: root/transform/chain.go
diff options
context:
space:
mode:
Diffstat (limited to 'transform/chain.go')
-rw-r--r--transform/chain.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/transform/chain.go b/transform/chain.go
index a5f042d96..d4e7b6223 100644
--- a/transform/chain.go
+++ b/transform/chain.go
@@ -16,7 +16,7 @@ package transform
import (
"bytes"
"io"
- "io/ioutil"
+ "os"
bp "github.com/gohugoio/hugo/bufferpool"
"github.com/gohugoio/hugo/common/herrors"
@@ -108,7 +108,7 @@ func (c *Chain) Apply(to io.Writer, from io.Reader) error {
if err := tr(fb); err != nil {
// Write output to a temp file so it can be read by the user for trouble shooting.
filename := "output.html"
- tempfile, ferr := ioutil.TempFile("", "hugo-transform-error")
+ tempfile, ferr := os.CreateTemp("", "hugo-transform-error")
if ferr == nil {
filename = tempfile.Name()
defer tempfile.Close()