From 7dc2a723d1e5c8442bb929e4b0e497e46cbc29a3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 26 Jun 2016 17:40:55 +0100 Subject: [PATCH] stopped exit from running if no exitcode --- lgsm/functions/core_exit.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/core_exit.sh b/lgsm/functions/core_exit.sh index 863460ae4..bc2e1717d 100644 --- a/lgsm/functions/core_exit.sh +++ b/lgsm/functions/core_exit.sh @@ -6,7 +6,7 @@ lgsm_version="210516" # Description: handles exiting of LGSM by running and reporting an exit code. -if [ "${exitcode}" != "0" ]; then +if [ -n "${exitcode}" ]||[ "${exitcode}" != "0" ]; then if [ "${exitcode}" == "1" ]; then fn_script_log_fatal "Exiting with code: ${exitcode}" elif [ "${exitcode}" == "2" ]; then @@ -17,6 +17,8 @@ if [ "${exitcode}" != "0" ]; then fn_script_log "Exiting with code: ${exitcode}" fi exit ${exitcode} +else + exitcode=0 fi if [ -f ".dev-debug" ]; then