From c48be04c37ff1c4dbcfdce6fff38912bd9db1b77 Mon Sep 17 00:00:00 2001 From: ssallam Date: Wed, 21 Oct 2020 16:54:14 +0200 Subject: [PATCH] add option to allow skipping contract deployment. --- start_ocean.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/start_ocean.sh b/start_ocean.sh index 9cea66c..4b8b215 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -199,6 +199,10 @@ while :; do COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/dashboard.yml/}" printf $COLOR_Y'Starting without Dashboard ...\n\n'$COLOR_RESET ;; + --skip-deploy) + export DEPLOY_CONTRACTS=false + printf $COLOR_Y'Ocean contracts will not be deployed, the last deployment (if any) will be intact ...\n\n'$COLOR_RESET + ;; ################################################# # Cleaning switches #################################################