Skip to content

Commit

Permalink
Revert "Pin godep to version 32"
Browse files Browse the repository at this point in the history
This reverts commit 7d5acfb.

This was hopefully fixed in
tools/godep#362
  • Loading branch information
eparis committed Jan 5, 2016
1 parent ee006e7 commit 2646b4c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions hack/verify-godeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ set -o errexit
set -o nounset
set -o pipefail

# Lock this to a release that is known to work. We can bump this as needed.
GODEP_RELEASE=v45

#### HACK ####
# Sometimes godep just can't handle things. This lets use manually put
# some deps in place first, so godep won't fall over.
Expand Down Expand Up @@ -56,13 +53,10 @@ function cleanup {
}
trap cleanup EXIT

export GOPATH="${_tmpdir}"
# build the godep tool
export GOPATH="${_tmpdir}"
go get -u github.com/tools/godep 2>/dev/null
pushd "${_tmpdir}/src/github.com/tools/godep" > /dev/null
git checkout "${GODEP_RELEASE}" 2>/dev/null
go install github.com/tools/godep 2>/dev/null
popd > /dev/null
go install github.com/tools/godep 2>/dev/null
GODEP="${_tmpdir}/bin/godep"

# fill out that nice clean place with the kube godeps
Expand Down

0 comments on commit 2646b4c

Please sign in to comment.