summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-19 22:21:00 +0100
committerw0rp <devw0rp@gmail.com>2016-10-19 22:21:00 +0100
commitf8f24854e3ac2a59e892c48051af48ec43c0ef0c (patch)
treec59a1de1214617a513f9cc7b799e84e06e3a9a8d /Makefile
parent492995614b4e75e5352cc1e54d3a648ceea19f19 (diff)
downloadale-f8f24854e3ac2a59e892c48051af48ec43c0ef0c.zip
Fix how the Makefile checks the image ID.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6c6cdc6c..50d5e63e 100644
--- a/Makefile
+++ b/Makefile
@@ -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
@:; \