Files
spring-test-data-geode/ci/cleanupArtifacts.sh
John Blum 091b54682f Refactor the Jenkins CI build pipeline configuration file.
Refactor and polish the Bash shell scripts invoked and usedd by the Jenkins CI build pipeline.
2022-03-17 17:22:26 -07:00

8 lines
146 B
Bash
Executable File

#!/bin/bash -x
rm -Rf ./.gradle
rm -Rf ./.m2
rm -Rf `find . -name "build" | grep -v "src"`
rm -Rf `find . -name "target" | grep -v "src"`
exit 0