From e73f650cf618a24b0a02eed7c2d1078eee487427 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 16 Jun 2014 14:47:11 +0200 Subject: [PATCH] MT#6253 Properly exit if user doesn't want to deploy --- templates-ce/scripts/includes/deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates-ce/scripts/includes/deployment.sh b/templates-ce/scripts/includes/deployment.sh index 4d06846..b5e5424 100755 --- a/templates-ce/scripts/includes/deployment.sh +++ b/templates-ce/scripts/includes/deployment.sh @@ -648,7 +648,7 @@ if "$INTERACTIVE" ; then read a if [[ "$a" != "y" ]] ; then echo "Exiting as requested." - exit 0 + exit 1 fi unset a fi