resource: Add instruction to install PostCSS when missing
authorAnthony Fok <foka@debian.org>
Sat, 25 Aug 2018 05:06:23 +0000 (23:06 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 26 Aug 2018 13:22:58 +0000 (15:22 +0200)
Fixes #5111

resource/transform.go

index b2c63057a9f61e6457b04eab9fa914ecb7c01908..c8174875699aaf9c56b91e4bf31ffc49369fc729 100644 (file)
@@ -391,7 +391,11 @@ func (r *transformedResource) transform(setContent bool) (err error) {
                                // If a prepared bundle for this transformation chain is available, use that.
                                f := r.tryTransformedFileCache(key)
                                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
                                defer f.Close()