From: Kai Moritz Date: Sat, 10 Oct 2020 18:37:10 +0000 (+0200) Subject: Introduced a parameter to force a build in the helper-scirpt README.sh X-Git-Url: https://juplo.de/gitweb/?p=demos%2Fkafka%2Fdeduplication;a=commitdiff_plain;h=8304884adae524b5ada843b4db66473c94da19ca Introduced a parameter to force a build in the helper-scirpt README.sh * Also added fast failure for build-errors --- 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