hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit d7798906d8e152a5d33f76ed0362628da8dd2c35
parent 305ce1c9ec746d3b8f6c9306b7014bfd621478a5
Author: Sam Smith <sams96@mail.com>
Date:   Sun,  1 Mar 2020 22:00:28 +0000

tpl: Change error message on missing resource

Fixes #6942

Diffstat:
Mtpl/resources/resources.go | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/tpl/resources/resources.go b/tpl/resources/resources.go
@@ -299,6 +299,9 @@ func (ns *Namespace) resolveArgs(args []interface{}) (resources.ResourceTransfor
 
 	r, ok := args[1].(resources.ResourceTransformer)
 	if !ok {
+		if _, ok := args[1].(map[string]interface{}); !ok {
+			return nil, nil, fmt.Errorf("no Resource provided in transformation")
+		}
 		return nil, nil, fmt.Errorf("type %T not supported in Resource transformations", args[0])
 	}