Use go install instead of go get

This commit is contained in:
Ole Markus With 2023-04-15 07:39:28 +02:00
parent 489e37cd36
commit 500ea2a8d0
1 changed files with 3 additions and 3 deletions

View File

@ -20,10 +20,10 @@ set -o pipefail
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
go get -u golang.org/x/lint/golint
go install golang.org/x/lint/golint@latest
go get -u github.com/tools/godep
go install github.com/tools/godep@latest
go get -u github.com/client9/misspell/cmd/misspell
go install github.com/client9/misspell/cmd/misspell@latest
# ex: ts=2 sw=2 et filetype=sh