Skip to content

Commit 3524a5a

Browse files
authored
Merge pull request kubernetes#89097 from jpbetz/patch-1
Fix unbound variable error in gce/configure.sh
2 parents 6847b2a + 23c358d commit 3524a5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/gce/gci/configure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ function ensure-container-runtime {
498498
docker version
499499
elif [[ "${container_runtime}" == "containerd" ]]; then
500500
# Install containerd/runc if requested
501-
if [[ ! -z "${UBUNTU_INSTALL_CONTAINERD_VERSION:-}" || ! -z "${UBUNTU_INSTALL_RUNC_VERSION}" ]]; then
501+
if [[ ! -z "${UBUNTU_INSTALL_CONTAINERD_VERSION:-}" || ! -z "${UBUNTU_INSTALL_RUNC_VERSION:-}" ]]; then
502502
install-containerd-ubuntu
503503
fi
504504
# Verify presence and print versions of ctr, containerd, runc

0 commit comments

Comments
 (0)