Fix copy paste mistakes in variables

This commit is contained in:
Andrejs Cunskis 2022-04-28 18:56:57 +03:00
parent 5c36d00eae
commit 9906770111
No known key found for this signature in database
GPG key ID: 87CB75083F227241

View file

@ -218,7 +218,7 @@ function print_ruby_args() {
function print_gcloud_args() {
case "$1" in
383)
BAZELISK_VERSION=383.0.1
GCLOUD_VERSION=383.0.1
;;
*) echo "Unknown gcloud version $1"; exit 1;
esac
@ -229,9 +229,9 @@ function print_gcloud_args() {
function print_kubectl_args() {
case "$1" in
1.23)
BAZELISK_VERSION=1.23.0
KUBECTL_VERSION=1.23.0
;;
*) echo "Unknown gcloud version $1"; exit 1;
*) echo "Unknown kubectl version $1"; exit 1;
esac
printf -- "--build-arg KUBECTL_VERSION=%s " "$KUBECTL_VERSION"