From 744aebc3fd4b2bd4f9d80b0a9675885ec5111fb9 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Mon, 16 Nov 2020 19:18:34 +0100 Subject: [PATCH] "Already exists" also means the pull finished Signed-off-by: Djordje Lukic --- local/compose.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/compose.go b/local/compose.go index c45203a3..7bf41d31 100644 --- a/local/compose.go +++ b/local/compose.go @@ -263,7 +263,7 @@ func toProgressEvent(jm jsonmessage.JSONMessage, w progress.Writer) { StatusText: jm.Error.Message, Done: true, }) - } else if jm.Status == "Pull complete" { + } else if jm.Status == "Pull complete" || jm.Status == "Already exists" { w.Event(progress.Event{ ID: jm.ID, Text: jm.Status,