From 6fee13a05d4faaffba6e129ed9eb7b95d7951300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Tue, 22 Sep 2015 15:58:22 +0200 Subject: [PATCH] Fix wrong version check on docker wait image --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index dce331d..763af9b 100755 --- a/install +++ b/install @@ -10,7 +10,7 @@ if ! docker images | grep -e "^svendowideit/ambassador "; then docker pull svendowideit/ambassador:latest fi -if ! docker images | grep -e "^aanand/wait " | grep -q "$PLUGIN_IMAGE_VERSION" ; then +if ! docker images | grep -e "^aanand/wait "; then docker pull aanand/wait:latest fi