diff --git a/install-coverage-pools.sh b/install-coverage-pools.sh index c060f11..710105f 100755 --- a/install-coverage-pools.sh +++ b/install-coverage-pools.sh @@ -2,8 +2,8 @@ set -e -LOG_START='\n\e[1;36m' # new line + bold + color -LOG_END='\n\e[0m' # new line + reset color +LOG_START='\n\e[1;36m' # new line + bold + color +LOG_END='\n\e[0m' # new line + reset color DONE_START='\n\e[1;32m' # new line + bold + green DONE_END='\n\n\e[0m' # new line + reset @@ -24,6 +24,10 @@ cd "$WORKDIR/coverage-pools" # Remove node modules for clean installation rm -rf ./node_modules +# Remove deployment artifacts for clean deployment +rm -rf ./artifacts +rm -rf ./deployments + printf "${LOG_START}Running install script...${LOG_END}" # Run coverage-pools install script.