bash/case

This commit is contained in:
Marc Beninca 2025-07-08 06:39:28 +02:00
parent dc204d0c08
commit cdf0f47ca3
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -4,8 +4,9 @@
# based on currently running shell # based on currently running shell
case "${RWX_SHELL}" in case "${RWX_SHELL}" in
# continue if it can handle it
"bash") ;; "bash") ;;
# skip illegal syntax to come # otherwise skip incorrect names to come
*) return ;; *) return ;;
esac esac