Skip to content
Draft

WIP #115

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions install-coverage-pools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
Expand Down