From 16e6f0899c4e6c27e31efc9209abb4c034b78c6b 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