summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/exit.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/exit.sh b/functions/exit.sh
index 9264f5db7..edfd50cb9 100755
--- a/functions/exit.sh
+++ b/functions/exit.sh
@@ -69,14 +69,14 @@ Exit_exit ()
if [ "${VALUE}" -ne 0 ]; then
Echo_error "An unexpected failure occurred, exiting..."
fi
- Exit "${VALUE}"
+ Exit ${VALUE}
}
Exit_other ()
{
local VALUE=$?
Echo_warning "Unexpected early exit caught, attempting cleanup..."
- Exit "${VALUE}"
+ Exit ${VALUE}
}
Setup_clean_exit ()