We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
go get -u
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
I'm running a version of Go built this morning:
% go version go version devel +1122836 Mon Jun 29 21:18:01 2015 +0000 darwin/amd64 % go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/jacobsa/tmp/go" GORACE="" GOROOT="/Users/jacobsa/clients/go" GOTOOLDIR="/Users/jacobsa/clients/go/pkg/tool/darwin_amd64" GO15VENDOREXPERIMENT="" CC="clang" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common" CXX="clang++" CGO_ENABLED="1"
Starting fresh and using go get works fine:
go get
% rm -rf $GOPATH/* zsh: sure you want to delete all the files in /Users/jacobsa/tmp/go [yn]? y % go get golang.org/x/build/cmd/gomote %
But doing the same with go get -u gives errors about internal packages:
% rm -rf $GOPATH/* zsh: sure you want to delete all the files in /Users/jacobsa/tmp/go [yn]? y % go get -u golang.org/x/build/cmd/gomote package golang.org/x/build/cmd/gomote imports golang.org/x/build/auth imports golang.org/x/oauth2 imports golang.org/x/net/context imports golang.org/x/oauth2/internal imports golang.org/x/oauth2/internal imports golang.org/x/oauth2/internal: use of internal package not allowed package golang.org/x/build/cmd/gomote imports golang.org/x/build/auth imports golang.org/x/oauth2 imports golang.org/x/net/context imports golang.org/x/oauth2/internal imports golang.org/x/oauth2/google imports golang.org/x/oauth2/jws imports golang.org/x/oauth2/jwt imports google.golang.org/cloud/compute/metadata imports google.golang.org/cloud/internal imports google.golang.org/cloud/internal imports google.golang.org/cloud/internal: use of internal package not allowed package golang.org/x/build/cmd/gomote imports golang.org/x/build/auth imports golang.org/x/oauth2 imports golang.org/x/net/context imports golang.org/x/oauth2/internal imports golang.org/x/oauth2/google imports golang.org/x/oauth2/jws imports golang.org/x/oauth2/jwt imports google.golang.org/cloud/compute/metadata imports google.golang.org/cloud/internal imports golang.org/x/build/buildlet imports golang.org/x/build/dashboard imports google.golang.org/api/compute/v1 imports google.golang.org/api/googleapi imports google.golang.org/api/googleapi/internal/uritemplates imports google.golang.org/api/googleapi/internal/uritemplates imports google.golang.org/api/googleapi/internal/uritemplates: use of internal package not allowed %
I've noticed similar errors when not starting fresh (i.e. trying to update commands).
The text was updated successfully, but these errors were encountered:
Dup of #11307
Sorry, something went wrong.
No branches or pull requests
I'm running a version of Go built this morning:
Starting fresh and using
go get
works fine:But doing the same with
go get -u
gives errors about internal packages:I've noticed similar errors when not starting fresh (i.e. trying to update commands).
The text was updated successfully, but these errors were encountered: