We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b307cd5 + be5d99e commit e7106e6Copy full SHA for e7106e6
hack/verify-apidiff.sh
@@ -65,7 +65,7 @@ fi
65
if ! which apidiff > /dev/null; then
66
echo "Installing golang.org/x/exp/cmd/apidiff..."
67
pushd "${TMPDIR:-/tmp}" > /dev/null
68
- go get golang.org/x/exp/cmd/apidiff
+ go install golang.org/x/exp/cmd/apidiff@latest
69
popd > /dev/null
70
fi
71
hack/verify-golint.sh
@@ -23,7 +23,7 @@ source "${KUBE_ROOT}/hack/lib/util.sh"
23
24
if ! which golint > /dev/null; then
25
echo "installing golint"
26
- go get golang.org/x/lint/golint
+ go install golang.org/x/lint/golint@latest
27
28
29
cd "${KUBE_ROOT}"
0 commit comments