From 75b1b3bcc068a48a3449a8a16957d3a2c9f61f8e Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 12 May 2023 13:02:51 -0700 Subject: [PATCH] Refactor the ci/cleanupArtifacts.sh script to disable the removal of .gradle/ and .m2/ directory (cached) files. --- ci/cleanupArtifacts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/cleanupArtifacts.sh b/ci/cleanupArtifacts.sh index 76f2de6c..79577c36 100755 --- a/ci/cleanupArtifacts.sh +++ b/ci/cleanupArtifacts.sh @@ -1,7 +1,7 @@ #!/bin/bash -x -rm -Rf ./.gradle -rm -Rf ./.m2 +#rm -Rf ./.gradle +#rm -Rf ./.m2 rm -Rf `find . -name "build" | grep -v "src"` rm -Rf `find . -name "target" | grep -v "src"` exit 0