fix unbound var error part 3

pull/12893/head
Sharif Elgamal 2021-11-08 15:20:14 -08:00
parent 390dff5fed
commit dae454ecd8
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ gsutil -m rsync -dJR out "gs://${bucket}/${ghprbPullId}"
readonly bucket_mirror="minikube/latest"
readonly HEAD="master"
if [[ "${ghprbPullId}" -eq "${HEAD}" ]]; then
if [[ "${ghprbPullId}" == "${HEAD}" ]]; then
# Copy artifacts to known mirror location
gsutil cp -R "gs://${bucket}/${ghprbPullId}/minikube-*" "gs://${bucket_mirror}"
fi