Skip to content

Commit

Permalink
Update vendored tool go install location to use GOPATH
Browse files Browse the repository at this point in the history
  • Loading branch information
cblecker committed Jun 25, 2018
1 parent 2edd107 commit 50fd906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/lib/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ kube::util::ensure_godep_version() {
fi

kube::log::status "Installing godep version ${GODEP_VERSION}"
go install ./vendor/github.com/tools/godep/
go install k8s.io/kubernetes/vendor/github.com/tools/godep/
if ! which godep >/dev/null 2>&1; then
kube::log::error "Can't find godep - is your GOPATH 'bin' in your PATH?"
kube::log::error " GOPATH: ${GOPATH}"
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-spelling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export GOBIN="${KUBE_OUTPUT_BINPATH}"
PATH="${GOBIN}:${PATH}"

# Install tools we need, but only from vendor/...
go install ./vendor/github.com/client9/misspell/cmd/misspell
go install k8s.io/kubernetes/vendor/github.com/client9/misspell/cmd/misspell

# Spell checking
# All the skipping files are defined in hack/.spelling_failures
Expand Down

0 comments on commit 50fd906

Please sign in to comment.