diff --git a/lib/functions/detectFiles.sh b/lib/functions/detectFiles.sh index aafaa395..86041020 100755 --- a/lib/functions/detectFiles.sh +++ b/lib/functions/detectFiles.sh @@ -8,7 +8,8 @@ ########################## FUNCTION CALLS BELOW ################################ ################################################################################ ################################################################################ - +################################################################################ +#### Function DetectAnsibleFile ################################################ DetectAnsibleFile() { ANSIBLE_DIRECTORY="${1}" FILE="${2}" @@ -18,7 +19,7 @@ DetectAnsibleFile() { if [[ ${FILE} == *"vault.yml" ]] || [[ ${FILE} == *"galaxy.yml" ]] || [[ ${FILE} == *"vault.yaml" ]] || [[ ${FILE} == *"galaxy.yaml" ]]; then debug "${FILE} is a file that super-linter ignores. Ignoring it..." return 1 - elif [[ "$(dirname "${FILE}")" == "${ANSIBLE_DIRECTORY}" ]]; then + elif [[ "$(dirname "${FILE}")" == *"${ANSIBLE_DIRECTORY}"* ]]; then debug "${FILE} is an Ansible-related file." return 0 else @@ -26,7 +27,7 @@ DetectAnsibleFile() { return 1 fi } - +################################################################################ #### Function DetectOpenAPIFile ################################################ DetectOpenAPIFile() { ################