feat: Add returncode to function (#1805)

This commit is contained in:
Kroese
2026-07-06 03:46:46 +02:00
committed by GitHub
parent e377c62aaf
commit 47dcf3732c
+2
View File
@@ -17,6 +17,8 @@ _trap() {
for sig; do for sig; do
trap "$func $sig" "$sig" trap "$func $sig" "$sig"
done done
return 0
} }
app() { app() {