Browse Source

trap less signals

main
pvincent 3 days ago
parent
commit
60e173bee7
  1. 3
      bin/miaou-bash

3
bin/miaou-bash

@ -301,7 +301,8 @@ function cleanup {
set -TEue -o pipefail
[[ $# -lt 1 ]] && >&2 echo 'ERROR: script expected!' && builtin exit 1
trap 'on_exit $?' ERR TERM INT EXIT
# trap 'on_exit $?' ERR TERM INT EXIT
trap 'on_exit $?' ERR EXIT
trap 'on_return' DEBUG
trap 'on_usr1' USR1
BASH_ARGV0="$1" && shift # to pretend script runs by itself

Loading…
Cancel
Save