summaryrefslogtreecommitdiffstats
path: root/publisher/publisher.go
diff options
context:
space:
mode:
Diffstat (limited to 'publisher/publisher.go')
-rw-r--r--publisher/publisher.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/publisher/publisher.go b/publisher/publisher.go
index fc1fc0799..63eb1011f 100644
--- a/publisher/publisher.go
+++ b/publisher/publisher.go
@@ -15,6 +15,7 @@ package publisher
import (
"errors"
+ "fmt"
"io"
"net/url"
"sync/atomic"
@@ -104,7 +105,7 @@ func (p DestinationPublisher) Publish(d Descriptor) error {
defer bp.PutBuffer(b)
if err := transformers.Apply(b, d.Src); err != nil {
- return err
+ return fmt.Errorf("failed to process %q: %w", d.TargetPath, err)
}
// This is now what we write to disk.