-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: regression in "go get" with relative paths #20175
Comments
Bisected this to #17863 (https://golang.org/cl/33158/). |
CC @shurcooL |
Thanks for the report, I'll be able to investigate this fully tomorrow (and happy to send a CL). From a brief look at this issue, it looks like |
Why not just roll back the incompatible change made for #17863? |
CL https://golang.org/cl/42350 mentions this issue. |
It's possible to do that, but it seems it would take more steps. That change was merged 2 months ago. If rolled back now, it would break The problem is that
In combination with:
In the case of local import path pointing to a directory that doesn't exist, that behavior was broken by the change in CL 33158. A fix I've come up with is to bring back that previous behavior of I've sent CL 42350, @rsc, can you comment on how it looks? For reference, here are all uses of
if build.IsLocalImport(arg) {
bp, _ := cfg.BuildContext.ImportDir(filepath.Join(base.Cwd, arg), build.FindOnly)
if bp.ImportPath != "" && bp.ImportPath != "." {
arg = bp.ImportPath
}
} if build.IsLocalImport(arg) {
cwd, _ := os.Getwd()
bp, _ := cfg.BuildContext.ImportDir(filepath.Join(cwd, arg), build.FindOnly)
if bp.ImportPath != "" && bp.ImportPath != "." {
arg = bp.ImportPath
}
} (There are 4 other instances in all of GOROOT code. One in |
@rsc, did you see my comment above? This is related to #19769 and CL https://go-review.googlesource.com/c/33158/#message-93b2fc6b74efcb9936bc119782ee3485ca897450. |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?Tip (
go version devel +c4335f81a2 Fri Apr 28 23:38:15 2017 +0000 darwin/amd64
)What operating system and processor architecture are you using (
go env
)?Mac
What did you do?
What did you expect to see?
I expected github.com/kevinburke/rest to get cloned from Github and checked out to $GOPATH/src/github.com/kevinburke/rest. (You should be able to reproduce this problem with any relative path, there's nothing specific to this repository)
This is the behavior of Go 1.5 through Go 1.8 (didn't test earlier versions than this).
What did you see instead?
My apologies as I believe someone was working on this previously, but I searched the issue history for related terms and couldn't find anything about it.
The text was updated successfully, but these errors were encountered: