From c692920dcd600f34c6549d41cd73dd0c0ed83387 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 24 Feb 2022 19:31:18 -0800 Subject: [PATCH] Refactor ci/cleanupArtifacts.sh to clean (remove) the Gradle build/ [and Maven target/] directories. --- ci/cleanupArtifacts.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/cleanupArtifacts.sh b/ci/cleanupArtifacts.sh index 9f343d2f..76f2de6c 100755 --- a/ci/cleanupArtifacts.sh +++ b/ci/cleanupArtifacts.sh @@ -2,4 +2,6 @@ rm -Rf ./.gradle rm -Rf ./.m2 +rm -Rf `find . -name "build" | grep -v "src"` +rm -Rf `find . -name "target" | grep -v "src"` exit 0