From 074e93f87a8a872ce4b8edf2339ecbe1fd1256a2 Mon Sep 17 00:00:00 2001 From: Narinder Gupta Date: Fri, 11 Dec 2015 07:29:21 -0600 Subject: modified clean and clean it properly. Change-Id: I61a11b1c7d76f539b8c061f5b155aa29c75a0406 --- ci/clean.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'ci/clean.sh') 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 -- cgit 1.2.3-korg