Browse Source

Fix breaking test

Signed-off-by: Vedant Koditkar <[email protected]>
Vedant Koditkar 3 years ago
parent
commit
a1d19119d2
1 changed files with 10 additions and 1 deletions
  1. 10 1
      pkg/compose/pull.go

+ 10 - 1
pkg/compose/pull.go

@@ -92,7 +92,16 @@ func (s *composeService) pull(ctx context.Context, project *types.Project, opts
 				w.Event(progress.Event{
 				w.Event(progress.Event{
 					ID:     service.Name,
 					ID:     service.Name,
 					Status: progress.Done,
 					Status: progress.Done,
-					Text:   "Exists",
+					Text:   "Skipped - Image is already present locally",
+				})
+				continue
+			}
+		default:
+			if _, ok := images[service.Image]; ok {
+				w.Event(progress.Event{
+					ID:     service.Name,
+					Status: progress.Done,
+					Text:   "Skipped - Image is already present locally",
 				})
 				})
 				continue
 				continue
 			}
 			}