hugo

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

git clone git://git.shimmy1996.com/hugo.git
commit 4c240800a4275244c9e0847cd6707383180f1ac3
parent 38204c4ab6fa2aa2ab8bd06ddb3e07b66e5f9646
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Mon, 16 Jul 2018 10:42:07 +0200

resource/bundler: Improve error message

Diffstat:
Mresource/bundler/bundler.go | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/resource/bundler/bundler.go b/resource/bundler/bundler.go
@@ -15,7 +15,6 @@
 package bundler
 
 import (
-	"errors"
 	"fmt"
 	"io"
 	"path/filepath"
@@ -71,7 +70,7 @@ func (c *Client) Concat(targetPath string, resources resource.Resources) (resour
 		// We may improve on that in the future, but then we need to know more.
 		for i, r := range resources {
 			if i > 0 && r.MediaType().Type() != resolvedm.Type() {
-				return nil, errors.New("resources in Concat must be of the same Media Type")
+				return nil, fmt.Errorf("resources in Concat must be of the same Media Type, got %q and %q", r.MediaType().Type(), resolvedm.Type())
 			}
 			resolvedm = r.MediaType()
 		}