1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-26 12:18:36 +00:00

Update strk.kbt.io/projects/go/libravatar to latest; closes #7860 (#8429)

This commit is contained in:
guillep2k
2019-10-08 16:48:57 -03:00
committed by techknowlogick
parent 4fe04f1adc
commit f05a3353f4
6 changed files with 61 additions and 37 deletions

12
vendor/strk.kbt.io/projects/go/libravatar/Makefile generated vendored Normal file
View File

@@ -0,0 +1,12 @@
PACKAGES ?= $(shell go list ./...)
.PHONY: check
check: lint
go test
.PHONY: lint
lint:
@which golint > /dev/null; if [ $$? -ne 0 ]; then \
go get -u github.com/golang/lint/golint; \
fi
@for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;