From 389b02fbf992cb672f1d720eb12d25c2c0259387 Mon Sep 17 00:00:00 2001 From: Chris Crone Date: Fri, 25 Oct 2024 16:01:57 -0400 Subject: [PATCH] push: Fix error message typo Signed-off-by: Chris Crone --- pkg/compose/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compose/push.go b/pkg/compose/push.go index 86698194d2e..257bc5da1cb 100644 --- a/pkg/compose/push.go +++ b/pkg/compose/push.go @@ -63,7 +63,7 @@ func (s *composeService) push(ctx context.Context, project *types.Project, optio for _, service := range project.Services { if service.Build == nil || service.Image == "" { if options.ImageMandatory && service.Image == "" { - return fmt.Errorf("%q attribut is mandatory to push an image for service %q", "service.image", service.Name) + return fmt.Errorf("%q attribute is mandatory to push an image for service %q", "service.image", service.Name) } w.Event(progress.Event{ ID: service.Name,