Fixed gocyclo check
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
konrad 2019-03-24 12:42:12 +01:00
parent 8a812518c5
commit 938c3bfeca
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -202,7 +202,7 @@ gocyclo-check:
go get -u github.com/fzipp/gocyclo; \ go get -u github.com/fzipp/gocyclo; \
go install $(GOFLAGS) github.com/fzipp/gocyclo; \ go install $(GOFLAGS) github.com/fzipp/gocyclo; \
fi fi
for S in $(GOFILES); do gocyclo -over 16 $$S || exit 1; done; for S in $(GOFILES); do gocyclo -over 17 $$S || exit 1; done;
.PHONY: static-check .PHONY: static-check
static-check: static-check: