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 1e60f5a commit 706897bCopy full SHA for 706897b
Makefile
@@ -34,9 +34,9 @@ fmt:
34
35
36
.PHONY: bingo-upgrade
37
-bingo-upgrade: $(BINGO) ## Upgrade tools
38
- @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
39
- echo "Upgrading $$pkg to latest..."; \
+bingo-upgrade: $(BINGO) #EXHELP Upgrade tools
+ @for pkg in $$($(BINGO) list | awk '{ print $$3 }' | tail -n +3 | sed 's/@.*//'); do \
+ echo -e "Upgrading \033[35m$$pkg\033[0m to latest..."; \
40
$(BINGO) get "$$pkg@latest"; \
41
done
42
0 commit comments