Skip to content

Commit eeea049

Browse files
chris-croneglours
authored andcommitted
push: Fix error message typo
Signed-off-by: Chris Crone <[email protected]>
1 parent 26064d4 commit eeea049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/compose/push.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (s *composeService) push(ctx context.Context, project *types.Project, optio
6363
for _, service := range project.Services {
6464
if service.Build == nil || service.Image == "" {
6565
if options.ImageMandatory && service.Image == "" {
66-
return fmt.Errorf("%q attribut is mandatory to push an image for service %q", "service.image", service.Name)
66+
return fmt.Errorf("%q attribute is mandatory to push an image for service %q", "service.image", service.Name)
6767
}
6868
w.Event(progress.Event{
6969
ID: service.Name,

0 commit comments

Comments
 (0)