From 8fff5338e23fab6d3586dfef39abb0eaf1efe5af Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Mon, 30 Mar 2015 13:36:35 -0700 Subject: [PATCH] Fix gke_test (should've realized why the cut -c 2- was there above this) --- hack/jenkins/e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/jenkins/e2e.sh b/hack/jenkins/e2e.sh index 42f992feb75..690c5a5cf58 100755 --- a/hack/jenkins/e2e.sh +++ b/hack/jenkins/e2e.sh @@ -96,7 +96,7 @@ cd kubernetes if [[ ! -z ${E2E_SET_CLUSTER_API_VERSION:-} ]]; then export CLUSTER_API_VERSION=$(echo ${GITHASH} | cut -c 2-) elif [[ ! -z ${E2E_USE_LATEST_RELEASE_VERSION:-} ]]; then - release=$(gsutil cat gs://kubernetes-release/release/latest.txt) + release=$(gsutil cat gs://kubernetes-release/release/latest.txt | cut -c 2-) export CLUSTER_API_VERSION=${release} fi