mirror of https://github.com/docker/compose.git
"Already exists" also means the pull finished
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
This commit is contained in:
parent
b0ee6d285a
commit
744aebc3fd
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue