SIGKILL cannot be trapped as per [SC2173](https://github.com/koalaman/shellcheck/wiki/SC2173). This is just to avoid showing bad example (which would generate another shellcheck warning). :-)

LuckyDams
2025-06-17 16:50:34 +02:00
parent 7695022715
commit 5e4642ae2b

@@ -6,7 +6,7 @@
trap "echo \"Finished on $(date)\"" EXIT
trap "rm -fr '$testdir1' '$testdir2'" $TRAP_SIGNALS
trap "rm $tmp" $TRAP_SIGNALS
trap "${remove_aar_temp}" SIGKILL SIGTERM SIGQUIT EXIT
trap "${remove_aar_temp}" SIGTERM SIGQUIT EXIT
trap "$(shopt -p extglob)" RETURN
```