Skip to content

Commit

Permalink
Merge branch 'cudos-dev' into cudos-master
Browse files Browse the repository at this point in the history
  • Loading branch information
kstoykov committed May 20, 2022
2 parents 528f5ea + 23b9df0 commit 4da3427
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tools-bash/upgrade/src/gravity.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,17 @@ source "$WORKING_SRC_DIR/incs/utils-common.sh"

source "$WORKING_SRC_DIR/incs/validate-gravity.sh"

source "$WORKING_SRC_DIR/modules/clean-docker.sh"
echo -ne "Cleaning the docker...";
dockerResult=$(docker system prune -a -f 2>&1)
dockerResult=$(docker container prune -f 2>&1)
echo -e "${STYLE_GREEN}OK${STYLE_DEFAULT}";

source "$WORKING_SRC_DIR/modules/change-contract.sh"

source "$WORKING_SRC_DIR/modules/clean-docker.sh"
echo -ne "Cleaning the docker...";
dockerResult=$(docker system prune -a -f 2>&1)
dockerResult=$(docker container prune -f 2>&1)
echo -e "${STYLE_GREEN}OK${STYLE_DEFAULT}";

source "$WORKING_SRC_DIR/modules/start-orchestrator.sh"

Expand Down

0 comments on commit 4da3427

Please sign in to comment.