-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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: install pkg@version: print deprecation messages #59230
Comments
For reference, the code in And the code in |
Should |
would adding
|
The existing implementation has been printing a deprecation message when running go get pkg@version, which is unnecessary. Remove the check for deprecation in the go get command. Fixes golang#59230
Change https://go.dev/cl/499176 mentions this issue: |
The existing implementation does not print a deprecation message when running `go install pkg@version`. This fix will add a print deprecation message for the `go run install` command. Fixes golang#59230
Change https://go.dev/cl/528775 mentions this issue: |
What version of Go are you using (
go version
)?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?
What did you expect to see?
deprecation message printed like with
go get
What did you see instead?
no deprecation message
cc @bcmills @matloob
The text was updated successfully, but these errors were encountered: