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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-26 10:52:42 +02:00
parent ac65b2b9ea
commit bcdf6e619b

View File

@@ -21,8 +21,9 @@ guard_sourcing
#######################################
guard_trace() {
case "${1,,}" in
on) [[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set +x;;
off) [[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set -x;;
on) if [[ "${VAR_DEBUG_TRACE}" == "true" ]]; then set +x; fi ;;
off) if [[ "${VAR_DEBUG_TRACE}" == "true" ]]; then set -x; fi ;;
esac
return 0
}
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh