Use GOTAGS in the vet make goal

This commit is contained in:
Kyle Havlovitz 2018-02-22 15:57:09 -08:00
parent 6da6e086ef
commit 1e11082709
No known key found for this signature in database
GPG Key ID: 8A5E6B173056AD6C

View File

@ -95,7 +95,7 @@ format:
vet:
@echo "--> Running go vet"
@go vet $(GOFILES); if [ $$? -eq 1 ]; then \
@go vet -tags '$(GOTAGS)' $(GOFILES); if [ $$? -eq 1 ]; then \
echo ""; \
echo "Vet found suspicious constructs. Please check the reported constructs"; \
echo "and fix them if necessary before submitting the code for review."; \