diff --git a/sh/core/code.sh b/sh/core/code.sh index 9c0e3ca..60206e7 100644 --- a/sh/core/code.sh +++ b/sh/core/code.sh @@ -229,12 +229,13 @@ rwx_code_check() { rwx_log rwx_shellcheck "${rwx_main_root}" rwx_log - rwx_shellcheck "${rwx_code_root}" + [ -d "${rwx_code_root}" ] && + rwx_shellcheck "${rwx_code_root}" # check format rwx_log rwx_shfmt "${rwx_main_root}" rwx_log - [ -e "${rwx_code_root}" ] && + [ -d "${rwx_code_root}" ] && rwx_shfmt "${rwx_code_root}" }