Merge pull request #3356 from tariq1890/use_dep_release

Download latest dep releases instead of fetching from HEAD
This commit is contained in:
k8s-ci-robot 2018-11-04 10:08:05 -08:00 committed by GitHub
commit adc05756f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -226,7 +226,7 @@ check_dead_links:
.PHONY: dep-ensure
dep-ensure:
dep version || go get -u github.com/golang/dep/cmd/dep
dep version || curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure -v
dep prune -v
find vendor -name '*_test.go' -delete