From 5c6e2aaef949653158d2585e835ca301e9f797e9 Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Sun, 2 Oct 2016 21:11:20 -0700 Subject: [PATCH] cluster/gci: Fix typo --- cluster/gce/gci/configure-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/gci/configure-helper.sh b/cluster/gce/gci/configure-helper.sh index 9be184154c1..e701155ffb3 100644 --- a/cluster/gce/gci/configure-helper.sh +++ b/cluster/gce/gci/configure-helper.sh @@ -429,7 +429,7 @@ function try-load-docker-image { local -i attempt_num=1 until timeout 30 docker load -i "${img}"; do if [[ "${attempt_num}" == "${max_attempts}" ]]; then - echo "Fail to load docker image file ${img} after ${max_attempts} retries. Exist!!" + echo "Fail to load docker image file ${img} after ${max_attempts} retries. Exit!!" exit 1 else attempt_num=$((attempt_num+1))