Skip to content
Snippets Groups Projects
Commit 7228cc00 authored by Pierre Schmitz's avatar Pierre Schmitz
Browse files

Use dedicated trap functions to avoid unsetting the trap when e.g. cleanup is called

parent a26416dc
No related branches found
No related tags found
No related merge requests found
...@@ -62,8 +62,6 @@ setup_workdir() { ...@@ -62,8 +62,6 @@ setup_workdir() {
} }
cleanup() { cleanup() {
trap - EXIT INT QUIT TERM HUP
[[ -n $WORKDIR ]] && rm -rf "$WORKDIR" [[ -n $WORKDIR ]] && rm -rf "$WORKDIR"
[[ $1 ]] && exit $1 [[ $1 ]] && exit $1
} }
...@@ -73,13 +71,23 @@ abort() { ...@@ -73,13 +71,23 @@ abort() {
cleanup 0 cleanup 0
} }
trap_abort() {
trap - EXIT INT QUIT TERM HUP
abort
}
trap_exit() {
trap - EXIT INT QUIT TERM HUP
cleanup 0
}
die() { die() {
error "$*" error "$*"
cleanup 1 cleanup 1
} }
trap abort INT QUIT TERM HUP trap 'trap_abort' INT QUIT TERM HUP
trap 'cleanup 0' EXIT trap 'trap_exit' EXIT
## ##
# usage : in_array( $needle, $haystack ) # usage : in_array( $needle, $haystack )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment