shithub: hugo

Download patch

ref: 4c240800a4275244c9e0847cd6707383180f1ac3
parent: 38204c4ab6fa2aa2ab8bd06ddb3e07b66e5f9646
author: Bjørn Erik Pedersen <[email protected]>
date: Mon Jul 16 06:42:07 EDT 2018

resource/bundler: Improve error message

--- 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 @@
 		// 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()
 		}