• Dmitriy Dudkin's avatar
    cmd/go: fix go get -u wildcard corner case · 6abc4a7c
    Dmitriy Dudkin authored
    Suppose you have already downloaded "foo.bar/baz", where the repo
    is for all of foo.bar/, and you then "go get -u foo.bar/...".
    The command-line wildcard expands to foo.bar/baz,
    and go get updates the foo.bar/ repo.
    Suppose that the repo update brought in foo.bar/quux,
    though, which depends on other.site/bar.
    Download does not consider foo.bar/quux, since it's
    only looking at foo.bar/baz, so it didn't download other.site/bar.
    After the download, we call importPaths(args) to decide what to install.
    That call was reevaluating the original wildcard with the new repo
    and matching foo.bar/quux, which was missing its dependency
    other.site/bar, causing a build failure.
    
    The fix in this CL is to remember the pre-download expansion
    of the argument list and pass it to the installer. Then only the things
    we tried to download get installed.
    
    The case where foo.bar/ is not even checked out yet continues to work,
    because in that case we leave the wildcard in place, and download
    reevaluates it during the download.
    
    The fix in this CL may not be the right long-term fix, but it is at least a fix.
    It may be that download should be passed all the original wildcards
    so that it can reexpand them as new code is downloaded, ideally reaching
    a fixed point. That can be left for another day.
    
    In short:
    
    - The problem is that the "install" half of "go get" was trying to install
      more than the "download" half was properly downloading.
    - The fix in this CL is to install just what was downloaded (install less).
    - It may be that a future CL should instead download what will be installed (download more).
    
    Fixes #14450.
    
    Change-Id: Ia1984761d24439549b7cff322bc0dbc262c1a653
    Reviewed-on: https://go-review.googlesource.com/19892
    Run-TryBot: Russ Cox <rsc@golang.org>
    Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
    Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    6abc4a7c
Name
Last commit
Last update
.github Loading commit data...
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...