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

This commit is contained in:
Marc Beninca 2025-07-08 01:58:47 +02:00
parent 091c9339f7
commit 259aae444a
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -2,23 +2,25 @@
# │ shell │ bash │
# ╰───────┴──────╯
if [ "${RWX_SHELL}" = "bash" ]; then
[ "${RWX_SHELL}" = "bash" ] ||
return
# shellcheck disable=SC3033
..() {
cd ..
}
# shellcheck disable=SC3033
...() {
cd ../..
}
# shellcheck disable=SC3033
....() {
cd ../../..
}
# shellcheck disable=SC3033
.....() {
cd ../../../..
}
fi