shell/case
All checks were successful
/ job (push) Successful in 3m56s

This commit is contained in:
Marc Beninca 2025-07-08 02:13:03 +02:00
parent 259aae444a
commit f9f93101ad
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -2,8 +2,12 @@
# │ shell │ bash │
# ╰───────┴──────╯
[ "${RWX_SHELL}" = "bash" ] ||
return
# based on currently running shell
case "${RWX_SHELL}" in
"bash") ;;
# skip illegal syntax to come
*) return ;;
esac
# shellcheck disable=SC3033
..() {