From ad9c0081f4b09f8d092d6604038560c2915612a9 Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Thu, 10 Sep 2020 12:10:12 +0200 Subject: [PATCH] Fix list files function typos --- lib/worker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/worker.sh b/lib/worker.sh index aa00a864..6b4f4319 100755 --- a/lib/worker.sh +++ b/lib/worker.sh @@ -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) ###########################