We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77fe16 commit b1fc311Copy full SHA for b1fc311
Makefile
@@ -103,6 +103,13 @@ image-upstream:
103
lint:
104
find . -type f -name '*.go' ! -name '*.pb.go' -print0 | xargs -0 goimports -w
105
106
+.PHONY: bingo-upgrade
107
+bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
108
+ @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
109
+ echo "Upgrading $$pkg to latest..."; \
110
+ $(BINGO) get "$$pkg@latest"; \
111
+ done
112
+
113
.PHONY: codegen
114
codegen: $(PROTOC) $(PROTOC_GEN_GO_GRPC)
115
$(PROTOC) --plugin=protoc-gen-go=$(PROTOC_GEN_GO_GRPC) -I pkg/api/ --go_out=pkg/api pkg/api/*.proto
0 commit comments