V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 2m0s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-10-24 11:00:58 +01:00
parent ae8c620737
commit efcbf4eb74

View File

@@ -20,7 +20,7 @@
# Returns:
# 0: Returns '0' in both cases as they are intended to be successful.
#######################################
guard_sourcing || return "${ERR_GUARD_SOURCE}"() {
guard_sourcing() {
### Determine the caller script (the library being sourced).
declare var_src="${1:-${BASH_SOURCE[1]}}"
### Strip path, keep only the filename
@@ -41,5 +41,5 @@ guard_sourcing || return "${ERR_GUARD_SOURCE}"() {
}
### Prevents accidental 'unset -f'.
# shellcheck disable=SC2034
readonly -f guard_sourcing || return "${ERR_GUARD_SOURCE}"
readonly -f guard_sourcing
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh