From a756e4015772c44cd3f28370524c812306986a70 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Wed, 2 Sep 2020 09:07:39 -0500 Subject: [PATCH] typo --- lib/buildFileList.sh | 2 +- lib/worker.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/buildFileList.sh b/lib/buildFileList.sh index c016b752..822a1c4a 100755 --- a/lib/buildFileList.sh +++ b/lib/buildFileList.sh @@ -759,7 +759,7 @@ function PopulateShellScriptsList() { mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \ -path "*/node_modules" -prune -o \ - -path "*/\.git" -prune -o \ + -path "*/.git" -prune -o \ -path "*/.venv"-prune -o \ -path "*/.rbenv"-prune -o \ -type f 2>&1) diff --git a/lib/worker.sh b/lib/worker.sh index 524a929d..c6eb4ccd 100755 --- a/lib/worker.sh +++ b/lib/worker.sh @@ -97,7 +97,7 @@ function LintCodebase() { ################################# mapfile -t LIST_FILES < <(find "${GITHUB_WORKSPACE}" \ -path "*/node_modules" -prune -o \ - -path "*/\.git" -prune -o \ + -path "*/.git" -prune -o \ -path "*/.venv"-prune -o \ -path "*/.rbenv"-prune -o \ -type f -regex "${FILE_EXTENSIONS}" 2>&1)