From 5fb71f988fc319a310608bf680f08db109e7bd05 Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Fri, 7 Jun 2019 16:05:41 -0500 Subject: [PATCH] DATAREDIS-1380 - Polishing Makefile. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 150015825..387b5cf8c 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ REDIS_VERSION:=4.0.11 SPRING_PROFILE?=ci +SHELL=/bin/bash -euo pipefail ####### # Redis @@ -149,5 +150,5 @@ stop: redis-stop sentinel-stop cluster-stop test: $(MAKE) start sleep 2 - mvn clean install -U -DrunLongTests=true -P$(SPRING_PROFILE) + mvn clean install -U -DrunLongTests=true -P$(SPRING_PROFILE) || (echo "maven failed $$?"; exit 1) $(MAKE) stop