Skip to content

Commit

Permalink
[nit] Fix "go get" path for golint
Browse files Browse the repository at this point in the history
resolve the following error.

> can't load package: package github.com/golang/lint/golint: code in directory
> /path/to/gopath/src/github.com/golang/lint/golint expects import "golang.org/x/lint/golint"
  • Loading branch information
Songmu committed Oct 12, 2018
1 parent c1fabbb commit 121ae17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ deps:

testdeps:
go get -d -v -t ./...
go get github.com/golang/lint/golint
go get golang.org/x/tools/cmd/cover
go get github.com/pierrre/gotestcover
go get github.com/mattn/goveralls
go get golang.org/x/lint/golint \
golang.org/x/tools/cmd/cover \
github.com/pierrre/gotestcover \
github.com/mattn/goveralls

check-release-deps:
@have_error=0; \
Expand Down

0 comments on commit 121ae17

Please sign in to comment.