aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gogs/go-libravatar/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gogs/go-libravatar/Makefile')
-rw-r--r--vendor/github.com/gogs/go-libravatar/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/github.com/gogs/go-libravatar/Makefile b/vendor/github.com/gogs/go-libravatar/Makefile
deleted file mode 100644
index 2a70ddc7..00000000
--- a/vendor/github.com/gogs/go-libravatar/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-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;