*.sh: Fix some shellcheck issues

This commit is contained in:
2025-06-27 12:59:13 +02:00
parent 3eb9113546
commit 5078b6a63f
7 changed files with 16 additions and 15 deletions

View File

@@ -9,5 +9,5 @@
# Usage: die [<MESSAGE>] [<EXIT_CODE>]
die() {
[ -z "$1" ] || >&2 printf "%s: %s\n" "$0" "$1"
exit ${2:-1}
exit "${2:-1}"
}