From: Narinder Gupta Date: Fri, 11 Dec 2015 13:29:21 +0000 (-0600) Subject: modified clean and clean it properly. X-Git-Tag: brahmaputra.1.0~109 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F4343%2F1;p=joid.git modified clean and clean it properly. Change-Id: I61a11b1c7d76f539b8c061f5b155aa29c75a0406 --- diff --git a/ci/clean.sh b/ci/clean.sh index 82fd84e0..c6658b4e 100755 --- a/ci/clean.sh +++ b/ci/clean.sh @@ -2,17 +2,18 @@ set -ex -if [ -d "~/.juju/environemnts" ]; then - juju status &>status.txt || true +if [ -d $HOME/.juju/environments ]; then + echo " " > status.txt + juju status &>>status.txt || true if [ "$(grep -c "environment is not bootstrapped" status.txt )" -ge 1 ]; then echo " environment is not bootstrapped ..." else echo " environment is bootstrapped ..." juju destroy-environment demo-maas -y - rm -rf ~/.juju/j* - rm -rf ~/.juju/.deployer-store-cache + rm -rf $HOME/.juju/j* + rm -rf $HOME/.juju/.deployer-store-cache fi - rm -rf ~/.juju/environments - rm -rf ~/.juju/ssh + rm -rf $HOME/.juju/environments + rm -rf $HOME/.juju/ssh fi