fix
All checks were successful
/ job (push) Successful in 2m57s

This commit is contained in:
Marc Beninca 2025-07-12 01:50:30 +02:00
parent ec1bb4bab2
commit 99b092e04b
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -229,12 +229,13 @@ rwx_code_check() {
rwx_log rwx_log
rwx_shellcheck "${rwx_main_root}" rwx_shellcheck "${rwx_main_root}"
rwx_log rwx_log
rwx_shellcheck "${rwx_code_root}" [ -d "${rwx_code_root}" ] &&
rwx_shellcheck "${rwx_code_root}"
# check format # check format
rwx_log rwx_log
rwx_shfmt "${rwx_main_root}" rwx_shfmt "${rwx_main_root}"
rwx_log rwx_log
[ -e "${rwx_code_root}" ] && [ -d "${rwx_code_root}" ] &&
rwx_shfmt "${rwx_code_root}" rwx_shfmt "${rwx_code_root}"
} }