From 8304884adae524b5ada843b4db66473c94da19ca Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sat, 10 Oct 2020 20:37:10 +0200 Subject: [PATCH] Introduced a parameter to force a build in the helper-scirpt README.sh * Also added fast failure for build-errors --- README.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.sh b/README.sh index 3b0e897..b71031c 100755 --- a/README.sh +++ b/README.sh @@ -8,10 +8,10 @@ then exit fi -if [[ $(docker image ls -q juplo/deduplicator:streams) == "" ]] +if [[ $(docker image ls -q juplo/deduplicator:streams) == "" || "$1" = "build" ]] then - mvn package - docker build -t juplo/deduplicator:streams . + mvn package || exit + docker build -t juplo/deduplicator:streams . || exit else echo "Using image existing image:" docker image ls juplo/deduplicator:streams -- 2.20.1