Created
April 7, 2016 01:26
-
-
Save DanPurdy/b6fbbb0a74e0ea78c431b24515db6fe0 to your computer and use it in GitHub Desktop.
Checks to see if our test reports directory exists, if it does it removes it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ${bamboo.build.working.directory} | |
if [ -d "test-reports" ] | |
then | |
echo "Test Directory exists - Deleting" | |
rm -r test-reports | |
echo "Done" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment