shithub: hugo

Download patch

ref: e5f960245938d8d8b4e99f312e9907f8d3aebf7a
parent: 9f497e7b5f77d0eb45d932a2301e648a3cd2d88f
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Mon Jul 29 05:36:48 EDT 2019

Add proper error message when receiving nil in Resource transformation

Closes #6128

--- a/resources/transform.go
+++ b/resources/transform.go
@@ -19,6 +19,8 @@
 	"strconv"
 	"strings"
 
+	"github.com/pkg/errors"
+
 	"github.com/gohugoio/hugo/common/collections"
 	"github.com/gohugoio/hugo/common/herrors"
 	"github.com/gohugoio/hugo/common/hugio"
@@ -43,6 +45,10 @@
 )
 
 func (s *Spec) Transform(r resource.Resource, t ResourceTransformation) (resource.Resource, error) {
+	if r == nil {
+		return nil, errors.New("got nil Resource in transformation. Make sure you check with 'with' or 'if' when you get a resource, e.g. with resources.Get.")
+	}
+
 	return &transformedResource{
 		Resource:                    r,
 		transformation:              t,