mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-21 21:35:28 +02:00
committed by
Bjørn Erik Pedersen
parent
94d6d6780f
commit
08d14113b6
@@ -391,7 +391,11 @@ func (r *transformedResource) transform(setContent bool) (err error) {
|
|||||||
// If a prepared bundle for this transformation chain is available, use that.
|
// If a prepared bundle for this transformation chain is available, use that.
|
||||||
f := r.tryTransformedFileCache(key)
|
f := r.tryTransformedFileCache(key)
|
||||||
if f == nil {
|
if f == nil {
|
||||||
return fmt.Errorf("%s: failed to transform %q (%s): %s", strings.ToUpper(tr.transformation.Key().name), tctx.InPath, tctx.InMediaType.Type(), err)
|
errMsg := err.Error()
|
||||||
|
if tr.transformation.Key().name == "postcss" {
|
||||||
|
errMsg = "PostCSS not found; install with \"npm install postcss-cli\". See https://gohugo.io/hugo-pipes/postcss/"
|
||||||
|
}
|
||||||
|
return fmt.Errorf("%s: failed to transform %q (%s): %s", strings.ToUpper(tr.transformation.Key().name), tctx.InPath, tctx.InMediaType.Type(), errMsg)
|
||||||
}
|
}
|
||||||
transformedContentr = f
|
transformedContentr = f
|
||||||
defer f.Close()
|
defer f.Close()
|
||||||
|
Reference in New Issue
Block a user