Disable |solana-install| check for edge/beta testnets (#4564)

The release tarball URL changes for these testnets, which causes the
normal |solana-install| check to fail and the testnet is unnecessarily
rebooted.
This commit is contained in:
Michael Vines
2019-06-05 15:31:29 -07:00
committed by GitHub
parent 8f50c3dd2e
commit aa4a7b0c73
5 changed files with 13 additions and 2 deletions

View File

@@ -311,6 +311,9 @@ if ! $skipStart; then
if [[ -n $NO_LEDGER_VERIFY ]]; then
args+=(-o noLedgerVerify)
fi
if [[ -n $NO_INSTALL_CHECK ]]; then
args+=(-o noInstallCheck)
fi
if [[ -n $maybeHashesPerTick ]]; then
# shellcheck disable=SC2206 # Do not want to quote $maybeHashesPerTick
args+=($maybeHashesPerTick)