From 07f1e58d9adde6ca014a3409ef70694f67cd87dd Mon Sep 17 00:00:00 2001 From: saadali Date: Wed, 11 May 2016 17:59:29 -0700 Subject: [PATCH] Modify verify-godeps to use v63 and hack --- hack/verify-godeps.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hack/verify-godeps.sh b/hack/verify-godeps.sh index 56886400c71..9d4fc938acd 100755 --- a/hack/verify-godeps.sh +++ b/hack/verify-godeps.sh @@ -71,7 +71,7 @@ cd "${_kubetmp}" go get -u github.com/tools/godep 2>/dev/null GODEP="${GOPATH}/bin/godep" pushd "${GOPATH}/src/github.com/tools/godep" > /dev/null - git checkout v53 + git checkout v63 "${GODEP}" go install popd > /dev/null @@ -88,7 +88,8 @@ rm -rf ./Godeps ./vendor git init > /dev/null 2>&1 # Recreate the Godeps using the nice clean set we just downloaded -"${GODEP}" save ./... +# TODO(thockin, eparis): Move this in to a common script with hack/godep-save.sh +"${GODEP}" save github.com/ugorji/go/codec/codecgen github.com/onsi/ginkgo/ginkgo ./... # Test for diffs if ! _out="$(diff -Naupr --ignore-matching-lines='^\s*\"GoVersion\":' --ignore-matching-lines='^\s*\"Comment\":' ${KUBE_ROOT}/Godeps/Godeps.json ${_kubetmp}/Godeps/Godeps.json)"; then