diff options
Diffstat (limited to 'include/err.sh')
-rwxr-xr-x | include/err.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/err.sh b/include/err.sh index 416c69af..12bba8fb 100755 --- a/include/err.sh +++ b/include/err.sh @@ -4,10 +4,17 @@ version=""; versiondate=""; projectname="" x_() { - [ $# -lt 1 ] || ${@} || err "non-zero exit status: ${@}" + [ $# -lt 1 ] || ${@} || err_exit err ${@} } xx_() { - [ $# -lt 1 ] || ${@} || fail "non-zero exit status: ${@}" + [ $# -lt 1 ] || ${@} || err_exit fail ${@} +} + +err_exit() +{ + _fail="${1}" && shift 1 + echo "Non-zero exit: $@" + $_fail "Unhandled error" } check_git() |