Skip to content

Commit

Permalink
.travis.yml: Use golint's preferred import path.
Browse files Browse the repository at this point in the history
Previously, tests failed with:

$ go get github.com/golang/lint/golint
package github.com/golang/lint/golint: code in directory /home/travis/gopath/src/github.com/golang/lint/golint expects import "golang.org/x/lint/golint"
  • Loading branch information
octo committed Oct 15, 2018
1 parent b268f6a commit 6795ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get golang.org/x/lint/golint
before_script:
- go get -d ./...
script:
Expand Down

0 comments on commit 6795ce6

Please sign in to comment.