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 ca58f84 commit 609e716Copy full SHA for 609e716
Makefile
@@ -107,8 +107,8 @@ lint:
107
108
.PHONY: bingo-upgrade
109
bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
110
- @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
111
- 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..."; \
112
$(BINGO) get "$$pkg@latest"; \
113
done
114
0 commit comments