diff --git a/lib/buildFileList.sh b/lib/buildFileList.sh index 53894376..431b3d26 100755 --- a/lib/buildFileList.sh +++ b/lib/buildFileList.sh @@ -100,7 +100,7 @@ function BuildFileList() { [ "${FILE_TYPE}" == "dash" ] || [ "${FILE_TYPE}" == "ksh" ]; then # Need to check if its a zsh file as we cannot parse it if CheckZsh "${FILE}"; then - warn "Found [zsh] script" + warn "Found [zsh] script: ${FILE}" info "ShellCheck does NOT currently support zsh, skipping file" else ################################ diff --git a/lib/worker.sh b/lib/worker.sh index 941d315f..48a06745 100755 --- a/lib/worker.sh +++ b/lib/worker.sh @@ -165,12 +165,12 @@ function LintCodebase() { continue elif [[ ${FILE_TYPE} == "BASH" ]] && CheckZsh "${FILE}"; then # ZSH file and we need to skip - warn "Found [zsh] script" + warn "Found [zsh] script: ${FILE}" info "ShellCheck does NOT currently support zsh, skipping file" continue elif [[ ${FILE_TYPE} == "SHELL_SHFMT" ]] && CheckZsh "${FILE}"; then # ZSH file and we need to skip - warn "Found [zsh] script" + warn "Found [zsh] script: ${FILE}" info "shfmt does NOT currently support zsh, skipping file" continue fi