fix: Avoid shellcheck warning (#1311)

This commit is contained in:
Kroese
2026-07-20 14:32:03 +02:00
committed by GitHub
parent 7a8f0041e7
commit e6b68b2f08
+2
View File
@@ -24,6 +24,8 @@ _trap() {
TRAP_PID=$BASHPID
for sig; do
# Capture the local callback and signal while registering the trap.
# shellcheck disable=SC2064
trap "$func $sig" "$sig"
done