mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
commit
91d2f937fa
1 changed files with 9 additions and 9 deletions
|
@ -94,12 +94,14 @@ function BuildFileList() {
|
|||
debug "----------------------------------------------"
|
||||
debug "Populating the file list with all the files in the ${WORKSPACE_PATH} workspace"
|
||||
mapfile -t RAW_FILE_ARRAY < <(find "${WORKSPACE_PATH}" \
|
||||
-path "*/node_modules" -prune -o \
|
||||
-path "*/.git" -prune -o \
|
||||
-path "*/.venv" -prune -o \
|
||||
-path "*/.rbenv" -prune -o \
|
||||
-path "*/.terragrunt-cache" -prune -o \
|
||||
-type f 2>&1 | grep -v -w '\.git' | sort )
|
||||
-not \( -path '*/\.git' -prune \) \
|
||||
-not \( -path '*/\.rbenv' -prune \) \
|
||||
-not \( -path '*/\.terragrunt-cache' -prune \) \
|
||||
-not \( -path '*/\.venv' -prune \) \
|
||||
-type f \
|
||||
2>&1 | sort)
|
||||
|
||||
debug "RAW_FILE_ARRAY contents: ${RAW_FILE_ARRAY[*]}"
|
||||
fi
|
||||
|
||||
#######################
|
||||
|
@ -111,9 +113,7 @@ function BuildFileList() {
|
|||
# Check the shell for errors #
|
||||
##############################
|
||||
if [ ${ERROR_CODE} -ne 0 ]; then
|
||||
# Error
|
||||
error "Failed to gain a list of all files changed!"
|
||||
fatal "[${RAW_FILE_ARRAY[*]}]"
|
||||
fatal "Failed to gain a list of all files changed! Error code: ${ERROR_CODE}"
|
||||
fi
|
||||
|
||||
##########################################################################
|
||||
|
|
Loading…
Reference in a new issue