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 6423f35Copy full SHA for 6423f35
Makefile
@@ -125,7 +125,7 @@ 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 \
+ @for pkg in $$($(BINGO) list | awk '{ print $$3 }' | tail -n +3 | sed 's/@.*//'); do \
129
echo "Upgrading $$pkg to latest..."; \
130
$(BINGO) get "$$pkg@latest"; \
131
done
0 commit comments