From 3d507d8d7310d070ed9ad8f023c45d3ff31f9f25 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 26 Jun 2016 17:32:02 +0100 Subject: [PATCH] removed exit on pass --- lgsm/functions/core_exit.sh | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/core_exit.sh b/lgsm/functions/core_exit.sh index 7842f3375..863460ae4 100644 --- a/lgsm/functions/core_exit.sh +++ b/lgsm/functions/core_exit.sh @@ -8,16 +8,18 @@ lgsm_version="210516" if [ "${exitcode}" != "0" ]; then if [ "${exitcode}" == "1" ]; then - fn_script_log_fatal "Exiting with exit code: ${exitcode}" + fn_script_log_fatal "Exiting with code: ${exitcode}" elif [ "${exitcode}" == "2" ]; then - fn_script_log_error "Exiting with exit code: ${exitcode}" + fn_script_log_error "Exiting with code: ${exitcode}" elif [ "${exitcode}" == "3" ]; then - fn_script_log_warn "Exiting with exit code: ${exitcode}" + fn_script_log_warn "Exiting with code: ${exitcode}" else - fn_script_log "Exiting with exit code: ${exitcode}" + fn_script_log "Exiting with code: ${exitcode}" fi -else - fn_script_log_pass "Exiting with exit code: ${exitcode}" + exit ${exitcode} +fi + +if [ -f ".dev-debug" ]; then + echo "Exiting with code: ${exitcode}" fi -exit ${exitcode} \ No newline at end of file