From cde26890511695020eacfee62ea1cdf64c222e6f Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Tue, 4 Jun 2019 16:49:58 +0200 Subject: [PATCH] specifically set latest & stable versions --- start_ocean.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/start_ocean.sh b/start_ocean.sh index 6abf9b3..0bd3c27 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -138,17 +138,17 @@ while :; do # Version switches ################################################# --latest) - export AQUARIUS_VERSION=${AQUARIUS_VERSION:-latest} - export BRIZO_VERSION=${BRIZO_VERSION:-latest} - export KEEPER_VERSION=${KEEPER_VERSION:-latest} - export PLEUSTON_VERSION=${PLEUSTON_VERSION:-latest} + export AQUARIUS_VERSION="latest" + export BRIZO_VERSION="latest" + export KEEPER_VERSION="latest" + export PLEUSTON_VERSION="latest" printf $COLOR_Y'Switched to latest components...\n\n'$COLOR_RESET ;; --stable) - export AQUARIUS_VERSION=${AQUARIUS_VERSION:-stable} - export BRIZO_VERSION=${BRIZO_VERSION:-stable} - export KEEPER_VERSION=${KEEPER_VERSION:-stable} - export PLEUSTON_VERSION=${PLEUSTON_VERSION:-stable} + export AQUARIUS_VERSION="stable" + export BRIZO_VERSION="stable" + export KEEPER_VERSION="stable" + export PLEUSTON_VERSION="stable" printf $COLOR_Y'Switched to stable components...\n\n'$COLOR_RESET ;; --force-pull)