Fix list files function typos

This commit is contained in:
Marco Ferrari 2020-09-10 12:10:12 +02:00
parent 767a39e107
commit ad9c0081f4

View file

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