From c113173660e4bed842eb4156697c96ea9b839a5d Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Fri, 18 Oct 2019 18:06:43 +0200 Subject: [PATCH] Remove unnecessary target --- Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 87e44fd..cb61f26 100644 --- a/Makefile +++ b/Makefile @@ -4,15 +4,12 @@ ifeq ($(OS),Linux) TAR_OPTS := --wildcards endif -all: deps lint test install +all: lint test install -deps: - go get ./... - -test: deps +test: go test ./... -vet: deps +vet: go vet ./... check-fmt: @@ -20,7 +17,7 @@ check-fmt: lint: check-fmt vet -install: deps +install: go install ./... databases := GeoLite2-City GeoLite2-Country GeoLite2-ASN