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 c923823 commit 7487d52Copy full SHA for 7487d52
Makefile
@@ -65,9 +65,9 @@ fix: $(GOLANGCI_LINT) ## Fixup files in the repo.
65
$(GOLANGCI_LINT) run --fix
66
67
.PHONY: bingo-upgrade
68
-bingo-upgrade: $(BINGO) ## Upgrade tools
69
- @for pkg in $$($(BINGO) list | awk '{ print $$1 }' | tail -n +3); do \
70
- 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..."; \
71
$(BINGO) get "$$pkg@latest"; \
72
done
73
0 commit comments