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 b83bd4e commit 1f0a7aaCopy full SHA for 1f0a7aa
Makefile
@@ -125,8 +125,8 @@ vet: #EXHELP Run go vet against code.
125
126
.PHONY: bingo-upgrade
127
bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
128
- @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
129
- 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..."; \
130
$(BINGO) get "$$pkg@latest"; \
131
done
132
0 commit comments