update vendor/

This commit is contained in:
Ettore Di Giacinto
2019-11-26 18:07:01 +01:00
parent 5915688830
commit 1e426b93a1
15 changed files with 1561 additions and 0 deletions

29
vendor/github.com/cavaliercoder/grab/Makefile generated vendored Normal file
View File

@@ -0,0 +1,29 @@
GO = go
GOGET = $(GO) get -u
all: check lint
check:
cd cmd/grab && $(MAKE) -B all
$(GO) test -cover -race ./...
install:
$(GO) install -v ./...
clean:
$(GO) clean -x ./...
rm -rvf ./.test*
lint:
gofmt -l -e -s . || :
go vet . || :
golint . || :
gocyclo -over 15 . || :
misspell ./* || :
deps:
$(GOGET) github.com/golang/lint/golint
$(GOGET) github.com/fzipp/gocyclo
$(GOGET) github.com/client9/misspell/cmd/misspell
.PHONY: all check install clean lint deps