Fix how the Makefile checks the image ID.

This commit is contained in:
w0rp 2016-10-19 22:21:00 +01:00
parent 492995614b
commit f8f24854e3
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ CURRENT_IMAGE_ID = 107e4efc4267
DOCKER_FLAGS = --rm -v $(PWD):/testplugin -v $(PWD)/test:/home "$(IMAGE)"
test-setup:
if [ `docker images -q $(IMAGE)` != $(CURRENT_IMAGE_ID) ]; then docker pull $(IMAGE); fi
docker images -q w0rp/ale | grep ^$(CURRENT_IMAGE_ID) > /dev/null || \
docker pull $(IMAGE)
test: test-setup
@:; \