From 945000153d800d47a07da1d4f6aa311f6de7df66 Mon Sep 17 00:00:00 2001 From: goltermann Date: Tue, 23 Feb 2016 11:53:04 -0800 Subject: [PATCH] Pin godeps to v53. --- hack/verify-godeps.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hack/verify-godeps.sh b/hack/verify-godeps.sh index dcec60fc1a..e00daa25fc 100755 --- a/hack/verify-godeps.sh +++ b/hack/verify-godeps.sh @@ -56,8 +56,11 @@ trap cleanup EXIT # build the godep tool export GOPATH="${_tmpdir}" go get -u github.com/tools/godep 2>/dev/null -go install github.com/tools/godep 2>/dev/null GODEP="${_tmpdir}/bin/godep" +pushd "${GOPATH}/src/github.com/tools/godep" > /dev/null + git checkout v53 + "${GODEP}" go install +popd > /dev/null # fill out that nice clean place with the kube godeps echo "Starting to download all kubernetes godeps. This takes a while"