Introduced a parameter to force a build in the helper-scirpt README.sh
authorKai Moritz <kai@juplo.de>
Sat, 10 Oct 2020 18:37:10 +0000 (20:37 +0200)
committerKai Moritz <kai@juplo.de>
Sat, 10 Oct 2020 19:35:42 +0000 (21:35 +0200)
* Also added fast failure for build-errors

README.sh

index 3b0e897..b71031c 100755 (executable)
--- 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