From 0ebd326f71c563f883e23166e94d0e55b8338687 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 4 May 2020 10:05:17 -0300 Subject: [PATCH] fix: log message Signed-off-by: Carlos Alexandro Becker --- internal/pipe/blob/blob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pipe/blob/blob.go b/internal/pipe/blob/blob.go index 50cdb1643..d755075e6 100644 --- a/internal/pipe/blob/blob.go +++ b/internal/pipe/blob/blob.go @@ -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)