diff --git a/Makefile b/Makefile index 617fcb9..3c7d208 100644 --- a/Makefile +++ b/Makefile @@ -34,9 +34,9 @@ fmt: .PHONY: bingo-upgrade -bingo-upgrade: $(BINGO) ## Upgrade tools - @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \ - 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..."; \ $(BINGO) get "$$pkg@latest"; \ done