We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03eee4c commit 59218eeCopy full SHA for 59218ee
1 file changed
internal/commands/pull.go
@@ -80,7 +80,7 @@ func runPullCommand(origin string, manifestPath string) error {
80
for image, auth := range imagesToPull {
81
log.Infof("Pulling %s", image)
82
if err := client.PullImageAndWait(ctx, image, auth); err != nil {
83
- return fmt.Errorf("pull image and wait: %w", err)
+ log.Errorf("pull image and wait: " + err.Error())
84
}
85
86
0 commit comments