File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ export GOBIN="${KUBE_OUTPUT_BINPATH}"
25
25
PATH=" ${GOBIN} :${PATH} "
26
26
27
27
# Install tools we need, but only from vendor/...
28
- pushd " ${KUBE_ROOT} /vendor "
29
- go install ./ github.com/bazelbuild/bazel-gazelle/cmd/gazelle
30
- go install ./ github.com/bazelbuild/buildtools/buildozer
31
- go install ./ k8s.io/repo-infra/cmd/kazel
32
- popd
28
+ pushd " ${KUBE_ROOT} " > /dev/null
29
+ GO111MODULE=on GOFLAGS=-mod=vendor go install github.com/bazelbuild/bazel-gazelle/cmd/gazelle
30
+ GO111MODULE=on GOFLAGS=-mod=vendor go install github.com/bazelbuild/buildtools/buildozer
31
+ GO111MODULE=on GOFLAGS=-mod=vendor go install k8s.io/repo-infra/cmd/kazel
32
+ popd > /dev/null
33
33
34
34
# Find all of the staging repos.
35
35
while IFS=' ' read -r repo; do staging_repos+=(" ${repo} " ); done < \
You can’t perform that action at this time.
0 commit comments