diff --git a/Makefile b/Makefile index e304fd2e3..9a8204f7b 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ package: deps: go get github.com/mitchellh/gox go get golang.org/x/tools/cmd/stringer - go get -u github.com/kardianos/govendor + go get github.com/kardianos/govendor govendor sync dev: deps ## Build and install a development build @@ -72,11 +72,6 @@ updatedeps: go get -u golang.org/x/tools/cmd/stringer @echo "INFO: Packer deps are managed by govendor. See CONTRIBUTING.md" -# This is used to add new dependencies to packer. If you are submitting a PR -# that includes new dependencies you will need to run this. -vendor: ## Add new dependencies. - @echo "INFO: Packer deps are managed by govendor. See CONTRIBUTING.md" - help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'