From 07a16ed119f2846373ecf755632da943e409ae28 Mon Sep 17 00:00:00 2001 From: Gabriel Diaz Date: Wed, 10 Mar 2021 09:38:31 -0500 Subject: [PATCH] Fix to lint other .env.* files (#1336) --- lib/functions/buildFileList.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/buildFileList.sh b/lib/functions/buildFileList.sh index 6659bbc1..bebf44bf 100755 --- a/lib/functions/buildFileList.sh +++ b/lib/functions/buildFileList.sh @@ -341,7 +341,7 @@ function BuildFileList() { ##################### # Get the ENV files # ##################### - elif [ "${FILE_TYPE}" == "env" ]; then + elif [ "${FILE_TYPE}" == "env" ] || [[ "${BASE_FILE}" == *".env."* ]]; then ################################ # Append the file to the array # ################################