Ask questionsBuild errors using Go 1.13
I'm currently getting build errors (master branch) trying to build golangci-lint with Go 1.13.
The build error is: go: github.com/golangci/[email protected]: invalid pseudo-version: does not match version-control timestamp (2019-07-14T14:40:26Z)
Here are a few details of my go env: GOARCH=amd64 GOOS=windows
Let me know if you need any more details to reproduce.
The reason I came across this is that go get with go 1.13 returns the errors below and I thought I'd try to use a locally build version of golangci-lint.
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint verifying github.com/golangci/[email protected]/go.mod: github.com/golangci/[email protected]/go.mod: reading https://sum.golang.org/lookup/github.com/golangci/[email protected]: 410 Gone verifying github.com/go-critic/[email protected]/go.mod: github.com/go-critic/[email protected]/go.mod: reading https://sum.golang.org/lookup/github.com/go-critic/[email protected]: 410 Gone
Answer
questions
lwaddicor
I'm getting the same thing
Go build gives me the same thing:
$ go build
go: github.com/go-critic/[email protected]: invalid pseudo-version: does not match version-control timestamp (2019-05-26T07:48:19Z)
Go mod tidy gives this:
$ go mod tidy
go: github.com/golangci/[email protected]: invalid pseudo-version: does not match version-control timestamp (2019-07-14T14:40:26Z)
Related questions