Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP #115

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
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