Skip to content

Commit 59218ee

Browse files
authored
pull.go: log on stderr instead of returning error on a per image basis (#37)
1 parent 03eee4c commit 59218ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/commands/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func runPullCommand(origin string, manifestPath string) error {
8080
for image, auth := range imagesToPull {
8181
log.Infof("Pulling %s", image)
8282
if err := client.PullImageAndWait(ctx, image, auth); err != nil {
83-
return fmt.Errorf("pull image and wait: %w", err)
83+
log.Errorf("pull image and wait: " + err.Error())
8484
}
8585
}
8686

0 commit comments

Comments
 (0)