-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/go: allow get from PR commit #33908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Rejection of unmerged PR commits is intentional, and we've had to do significant work to maintain it (see #31191) — we want module authors to decide which versions of their own module participate in minimal version selection. For the particular use-case of fixing an upstream dependency without an active maintainer, the right long-term approach is probably to fork the dependency to a new module path. But right now we don't have a good migration path for hard forks — that's why #26904 is one of my top priorities for modules in 1.14. |
To summarize:
|
Closing as incompatible with #31191. |
@bcmills OK 👍 thank you for your help |
What version of Go are you using (
go version
)?go version go1.13rc1 linux/amd64
Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I'm trying to install https://github.com/golangci/golangci-lint with
go get
.The pre-compiled binaries don't seem to work properly with Go 1.13. ( golangci/golangci-lint#604 )
That's why I'm trying to install it from the source.
I understand the cause of the issue, so I've submitted a PR that fixes it.
golangci/golangci-lint#605
Sadly, it seems that the maintainer is not available anymore (he doesn't answer).
golangci/golangci-lint#647
So I'm now trying to install from the commit of my PR:
golangci/golangci-lint@c3a532e
But it seems to fail.
I remember reading something about
go get
restricting the allowed commits.There was some concern about a security issue.
But I can't find the source of this comment anymore.
What did you expect to see?
I would like to be able to install golangci-lint from source.
Or is there a better way ?
The text was updated successfully, but these errors were encountered: