Make bootstrap use -u to ensure up-to-date versions of tools, as that's

what we build with.

Fixes #1890
This commit is contained in:
Jeff Mitchell 2016-09-14 15:10:00 -04:00
parent eece4e047b
commit bd4584c346
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ generate:
bootstrap:
@for tool in $(EXTERNAL_TOOLS) ; do \
echo "Installing $$tool" ; \
go get $$tool; \
go get -u $$tool; \
done
.PHONY: bin default generate test vet bootstrap