hugo

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

git clone git://git.shimmy1996.com/hugo.git
commit 61f210dd7abe5de77c27dc6a6995a3ad5e77afa1
parent f8446188dbec8378f34f0fea39161a49fcc46083
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Fri,  2 Nov 2018 12:55:09 +0100

tpl: Fix the docshelper

Diffstat:
Mtpl/cast/docshelper.go | 7++++++-
Mtpl/resources/resources.go | 4++++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/tpl/cast/docshelper.go b/tpl/cast/docshelper.go
@@ -14,6 +14,7 @@
 package cast
 
 import (
+	"github.com/gohugoio/hugo/common/loggers"
 	"github.com/gohugoio/hugo/deps"
 	"github.com/gohugoio/hugo/docshelper"
 	"github.com/gohugoio/hugo/tpl/internal"
@@ -24,7 +25,11 @@ import (
 func init() {
 	docsProvider := func() map[string]interface{} {
 		docs := make(map[string]interface{})
-		d := &deps.Deps{Cfg: viper.New()}
+		d := &deps.Deps{
+			Cfg:                 viper.New(),
+			Log:                 loggers.NewErrorLogger(),
+			BuildStartListeners: &deps.Listeners{},
+		}
 
 		var namespaces internal.TemplateFuncsNamespaces
 
diff --git a/tpl/resources/resources.go b/tpl/resources/resources.go
@@ -34,6 +34,10 @@ import (
 
 // New returns a new instance of the resources-namespaced template functions.
 func New(deps *deps.Deps) (*Namespace, error) {
+	if deps.ResourceSpec == nil {
+		return &Namespace{}, nil
+	}
+
 	scssClient, err := scss.New(deps.BaseFs.Assets, deps.ResourceSpec)
 	if err != nil {
 		return nil, err