Tidy up Makefile to get rid of vendor directory avoidance workarounds

This commit is contained in:
Nick Craig-Wood 2017-12-03 12:04:37 +00:00
parent 38b85e94ea
commit 006b296c34
1 changed files with 2 additions and 2 deletions

View File

@ -47,9 +47,9 @@ endif
check: rclone
ifdef GO_LATEST
go vet $(BUILDTAGS) -printfuncs Debugf,Infof,Logf,Errorf ./...
errcheck $(BUILDTAGS) $(GO_FILES)
errcheck $(BUILDTAGS) ./...
find . -name \*.go | grep -v /vendor/ | xargs goimports -d | grep . ; test $$? -eq 1
go list ./... | grep -v /vendor/ | xargs -n1 golint | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
go list ./... | xargs -n1 golint | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
else
@echo Skipping tests as not on Go stable
endif