Skip to content

Commit

Permalink
Fix problem fetching lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff R. Allen committed Sep 10, 2019
1 parent b22f17a commit a485d57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test_fmt:
test_lint:
@echo Checking linting of files
@{ \
go get -u github.com/golang/lint/golint; \
GO111MODULE=off go get golang.org/x/lint; \
lintfiles=$$( golint ./... | egrep -v _test.go ); \
if [ -n "$$lintfiles" ]; then \
echo "Lint errors:"; \
Expand All @@ -29,7 +29,7 @@ test_lint:
}

test_goveralls:
go get github.com/mattn/goveralls
GO111MODULE=off go get github.com/mattn/goveralls
$(CODING)/coveralls.sh $(EXCLUDE_TEST)
$(gopath)/bin/goveralls -coverprofile=profile.cov -service=travis-ci || true

Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ go.dedis.ch/fixbuf v1.0.3/go.mod h1:yzJMt34Wa5xD37V5RTdmp38cz3QhMagdGoem9anUalw=
go.dedis.ch/kyber/v3 v3.0.4/go.mod h1:OzvaEnPvKlyrWyp3kGXlFdp7ap1VC6RkZDTaPikqhsQ=
go.dedis.ch/protobuf v1.0.5 h1:EbF1czEKICxf5KY8Tm7wMF28hcOQbB6yk4IybIFWTYE=
go.dedis.ch/protobuf v1.0.5/go.mod h1:eIV4wicvi6JK0q/QnfIEGeSFNG0ZeB24kzut5+HaRLo=
go.dedis.ch/protobuf v1.0.7 h1:wRUEiq3u0/vBhLjcw9CmAVrol+BnDyq2M0XLukdphyI=
go.dedis.ch/protobuf v1.0.7/go.mod h1:pv5ysfkDX/EawiPqcW3ikOxsL5t+BqnV6xHSmE79KI4=
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b h1:Elez2XeF2p9uyVj0yEUDqQ56NFcDtcBNkYP7yv8YbUE=
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
Expand Down

0 comments on commit a485d57

Please sign in to comment.