1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-06 03:13:48 +02:00

fix: log message

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-05-04 10:05:17 -03:00
parent 83e401cfa5
commit 0ebd326f71
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -35,7 +35,7 @@ func (Pipe) Default(ctx *context.Context) error {
// Publish to specified blob bucket url
func (Pipe) Publish(ctx *context.Context) error {
if len(ctx.Config.Blobs) == 0 {
return pipe.Skip("Blob section is not configured")
return pipe.Skip("blobs section is not configured")
}
var g = semerrgroup.New(ctx.Parallelism)