Merge pull request #89299 from li-ang/go-bindata

Use correct path when installing go-bindata
This commit is contained in:
Kubernetes Prow Robot 2020-03-25 23:40:24 -07:00 committed by GitHub
commit e327ef9a65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ export GOBIN="${KUBE_OUTPUT_BINPATH}"
PATH="${GOBIN}:${PATH}"
# Install tools we need, but only from vendor/...
go install k8s.io/kubernetes/vendor/github.com/go-bindata/go-bindata/...
go install k8s.io/kubernetes/vendor/github.com/go-bindata/go-bindata/go-bindata
# run the generation from the root directory for stable output
pushd "${KUBE_ROOT}" >/dev/null