From ebf6194d0ed16a5e228828cac133df168c5ec056 Mon Sep 17 00:00:00 2001 From: Lukas Gravley Date: Tue, 1 Jun 2021 12:17:13 -0500 Subject: [PATCH] wildcard search (#1608) --- lib/functions/detectFiles.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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() { ################