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 a67d023 commit 7a6fa07Copy full SHA for 7a6fa07
Makefile
@@ -134,8 +134,8 @@ vet: #EXHELP Run go vet against code.
134
135
.PHONY: bingo-upgrade
136
bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
137
- @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
138
- echo "Upgrading $$pkg to latest..."; \
+ @for pkg in $$($(BINGO) list | awk '{ print $$3 }' | tail -n +3 | sed 's/@.*//'); do \
+ echo -e "Upgrading \033[35m$$pkg\033[0m to latest..."; \
139
$(BINGO) get "$$pkg@latest"; \
140
done
141
0 commit comments