소스 검색

push: Fix error message typo

Signed-off-by: Chris Crone <[email protected]>
Chris Crone 1 년 전
부모
커밋
eeea049f17
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pkg/compose/push.go

+ 1 - 1
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,