fix: update early signal trap in recover_bad_signature.sh to pass exit code

Line 1003: changed
       to
This commit is contained in:
2026-09-17 00:58:49 +02:00
parent dfacd0ce83
commit 5b811260a5
+1 -1
View File
@@ -1000,7 +1000,7 @@ if mkdir "$LOCK_DIR" 2> /dev/null ; then
# - Remove lockdir when the script finishes, or when it receives a signal
# -
trap clean_up SIGHUP SIGINT SIGTERM
trap 'clean_up 1' SIGHUP SIGINT SIGTERM
else