From c406fd3a0e0efa17f69095ca6317ba1036fc8964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 16 Jul 2023 10:42:13 +0200 Subject: Fix setting config from env with complex (e.g. YAML) strings So you can do ``` HUGO_OUTPUTS="home: [rss]" hugo ``` And similar. Fixes #11249 --- parser/metadecoders/decoder.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'parser') diff --git a/parser/metadecoders/decoder.go b/parser/metadecoders/decoder.go index 93eb32e47..40b3a336c 100644 --- a/parser/metadecoders/decoder.go +++ b/parser/metadecoders/decoder.go @@ -23,6 +23,7 @@ import ( "strings" "github.com/gohugoio/hugo/common/herrors" + "github.com/gohugoio/hugo/common/maps" "github.com/niklasfasching/go-org/org" xml "github.com/clbanning/mxj/v2" @@ -90,7 +91,7 @@ func (d Decoder) UnmarshalStringTo(data string, typ any) (any, error) { switch typ.(type) { case string: return data, nil - case map[string]any: + case map[string]any, maps.Params: format := d.FormatFromContentString(data) return d.UnmarshalToMap([]byte(data), format) case []any: -- cgit v1.2.3