Fix dep-ensure task (#5016)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-02-05 09:41:04 -03:00 committed by GitHub
parent b9e944a8a6
commit be22a5d9bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -226,9 +226,9 @@ check_dead_links: ## Check if the documentation contains dead links.
.PHONY: dep-ensure
dep-ensure: check-go-version ## Update and vendo go dependencies.
go mod tidy -v
GO111MODULE=on go mod tidy -v
find vendor -name '*_test.go' -delete
go mod vendor
GO111MODULE=on go mod vendor
.PHONY: dev-env
dev-env: check-go-version ## Starts a local Kubernetes cluster using minikube, building and deploying the ingress controller.

View file