specifically set latest & stable versions

This commit is contained in:
Matthias Kretschmann 2019-06-04 16:49:58 +02:00
parent b6c0527047
commit cde2689051
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 8 additions and 8 deletions

View File

@ -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)