mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
Fix to lint other .env.* files (#1336)
This commit is contained in:
parent
1124e51b7b
commit
07a16ed119
1 changed files with 1 additions and 1 deletions
|
@ -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 #
|
||||
################################
|
||||
|
|
Loading…
Reference in a new issue