From 8be7c6df85598bebb933bd39278fe397a1b4f159 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Tue, 13 Oct 2020 14:17:40 -0500 Subject: [PATCH] remove cache folder --- lib/buildFileList.sh | 1 + lib/worker.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/buildFileList.sh b/lib/buildFileList.sh index cace7e9d..dca31bd8 100755 --- a/lib/buildFileList.sh +++ b/lib/buildFileList.sh @@ -71,6 +71,7 @@ function BuildFileList() { -path "*/.git" -prune -o \ -path "*/.venv" -prune -o \ -path "*/.rbenv" -prune -o \ + -path "*/.terragrunt-cache" -prune -o \ -type f 2>&1) fi diff --git a/lib/worker.sh b/lib/worker.sh index 018d1c3e..0707f137 100755 --- a/lib/worker.sh +++ b/lib/worker.sh @@ -370,6 +370,7 @@ function TestCodebase() { -path "*/.venv" -prune -o \ -path "*/.git" -prune -o \ -path "*/.rbenv" -prune -o \ + -path "*/.terragrunt-cache" -prune -o \ -type f -regex "${FILE_EXTENSIONS}" \ ! -path "${GITHUB_WORKSPACE}/${TEST_CASE_FOLDER}/ansible/ghe-initialize/*" | sort 2>&1)