From e123fa9fc890dd07db74a3a5155760a8b76758af Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 25 Mar 2013 16:42:14 -0400 Subject: [PATCH] purge the _RELEASE_DIR directories on clean.sh if we don't do this we can't take in bug fixes to the grizzly repo from upstream. Change-Id: I9fab880560404ae47f42e546317ae2b1da27be04 --- clean.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clean.sh b/clean.sh index 78836697..0a999d8b 100755 --- a/clean.sh +++ b/clean.sh @@ -79,3 +79,6 @@ sudo rm -rf /var/lib/mysql # kill off swift, which doesn't live in screen, so doesn't die in screen ps auxw | grep swift | awk '{print $2}' | xargs kill +# purge all the repo pulls +sudo rm -rf $BASE_RELEASE_DIR +sudo rm -rf $TARGET_RELEASE_DIR