summaryrefslogtreecommitdiffstats
path: root/commands/hugo.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-10-20 11:16:18 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-10-22 20:46:13 +0200
commit129c27ee6e9fed98dbfebeaa272fd52757b475b2 (patch)
treeba931600714e354f0c7d05ad0a598f591b0258f6 /commands/hugo.go
parent44da60d869578423dea529db62ed613588a2a560 (diff)
parser/metadecoders: Consolidate the metadata decoders
See #5324
Diffstat (limited to 'commands/hugo.go')
-rw-r--r--commands/hugo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index deaa1f7ff..2204ae9f3 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -42,7 +42,7 @@ import (
"github.com/gohugoio/hugo/config"
- "github.com/gohugoio/hugo/parser"
+ "github.com/gohugoio/hugo/parser/metadecoders"
flag "github.com/spf13/pflag"
"github.com/fsnotify/fsnotify"
@@ -1017,7 +1017,7 @@ func (c *commandeer) isThemeVsHugoVersionMismatch(fs afero.Fs) (dir string, mism
b, err := afero.ReadFile(fs, path)
- tomlMeta, err := parser.HandleTOMLMetaData(b)
+ tomlMeta, err := metadecoders.UnmarshalToMap(b, metadecoders.TOML)
if err != nil {
continue