summaryrefslogtreecommitdiffstats
path: root/resource
diff options
context:
space:
mode:
Diffstat (limited to 'resource')
-rw-r--r--resource/bundler/bundler.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/resource/bundler/bundler.go b/resource/bundler/bundler.go
index b9cd718db..4b1718b0d 100644
--- 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()
}