From 812a8bcc6ca7e81f8f057f4f92a7f5f0c8436223 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 7 Nov 2018 10:33:20 -0800 Subject: [PATCH] Permit release tag tarballs --- ci/testnet-deploy.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/testnet-deploy.sh b/ci/testnet-deploy.sh index 80b221c3c3..5872d5dbae 100755 --- a/ci/testnet-deploy.sh +++ b/ci/testnet-deploy.sh @@ -32,8 +32,10 @@ Deploys a CD testnet options: -s edge|beta|stable - Deploy the specified Snap release channel (default: $snapChannel) - -t edge|beta|stable - Deploy the specified prebuilt tar from channel - (default: $releaseChannel) + -t edge|beta|stable|vX.Y.Z - Deploy the latest tarball release for the + specified release channel (edge|beta|stable) or release tag + (vX.Y.Z) + (default: $releaseChannel) -n [number] - Number of validator nodes (default: $validatorNodeCount) -c [number] - Number of client nodes (default: $clientNodeCount) -P - Use public network IP addresses (default: $publicNetwork) @@ -82,7 +84,7 @@ while getopts "h?p:Pn:c:s:t:gG:a:d" opt; do ;; t) case $OPTARG in - edge|beta|stable) + edge|beta|stable|v*) releaseChannel=$OPTARG useReleaseChannel=true ;;