This commit is contained in:
Lucas Gravley 2020-09-02 09:07:39 -05:00
parent 6040030c8a
commit a756e40157
2 changed files with 2 additions and 2 deletions

View file

@ -759,7 +759,7 @@ function PopulateShellScriptsList() {
mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \ mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \
-path "*/node_modules" -prune -o \ -path "*/node_modules" -prune -o \
-path "*/\.git" -prune -o \ -path "*/.git" -prune -o \
-path "*/.venv"-prune -o \ -path "*/.venv"-prune -o \
-path "*/.rbenv"-prune -o \ -path "*/.rbenv"-prune -o \
-type f 2>&1) -type f 2>&1)

View file

@ -97,7 +97,7 @@ function LintCodebase() {
################################# #################################
mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \ mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \
-path "*/node_modules" -prune -o \ -path "*/node_modules" -prune -o \
-path "*/\.git" -prune -o \ -path "*/.git" -prune -o \
-path "*/.venv"-prune -o \ -path "*/.venv"-prune -o \
-path "*/.rbenv"-prune -o \ -path "*/.rbenv"-prune -o \
-type f -regex "${FILE_EXTENSIONS}" 2>&1) -type f -regex "${FILE_EXTENSIONS}" 2>&1)