Refactor ci/cleanupArtifacts.sh to clean (remove) the Gradle build/ [and Maven target/] directories.

This commit is contained in:
John Blum
2022-02-24 19:31:18 -08:00
parent d361a3bbeb
commit c692920dcd

View File

@@ -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