Skip if --custom-cpu is used as well. (#6130)

This commit is contained in:
sakridge
2019-09-26 15:52:03 -07:00
committed by GitHub
parent b4da83a3ab
commit 06b445ac07

View File

@ -172,7 +172,7 @@ while [[ -n $1 ]]; do
elif [[ $1 = --fullnode-additional-disk-size-gb ]]; then elif [[ $1 = --fullnode-additional-disk-size-gb ]]; then
fullNodeAdditionalDiskSizeInGb="$2" fullNodeAdditionalDiskSizeInGb="$2"
shift 2 shift 2
elif [[ $1 == --machine-type* ]]; then # Bypass quoted long args for GPUs elif [[ $1 == --machine-type* || $1 == --custom-cpu* ]]; then # Bypass quoted long args for GPUs
shortArgs+=("$1") shortArgs+=("$1")
shift shift
else else