Refactor the ci/cleanupArtifacts.sh script to disable the removal of .gradle/ and .m2/ directory (cached) files.

This commit is contained in:
John Blum
2023-05-12 13:02:51 -07:00
parent d67de480f9
commit 75b1b3bcc0

View File

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