Add support for using a release tar

This commit is contained in:
Michael Vines 2018-11-06 15:02:55 -08:00
parent 8be7c13d2d
commit c4bc331663
1 changed files with 8 additions and 6 deletions

View File

@ -25,7 +25,9 @@ Operate a configured testnet
start-specific options:
-S [snapFilename] - Deploy the specified Snap file
-s edge|beta|stable - Deploy the latest Snap on the specified Snap release channel
-t edge|beta|stable - Deploy the latest tarball release for the specified channel
-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)
-f [cargoFeatures] - List of |cargo --feaures=| to activate
(ignored if -s or -S is specified)
@ -78,7 +80,7 @@ while getopts "h?S:s:t:o:f:" opt; do
;;
t)
case $OPTARG in
edge|beta|stable)
edge|beta|stable|v*)
releaseChannel=$OPTARG
deployMethod=tar
;;