-
Notifications
You must be signed in to change notification settings - Fork 24
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
GVM cannot install 1.21 #61
Comments
A secondary issue is that the tar files for Go 1.21 no longer contain directory entries. This affects the ability to untar the files by gvm:
|
The tar file issue is going to be fixed based on golang/go#61862, but |
For reference, including the ".0" in the Go version was Go proposal golang/go#57631 and it only applies to Go 1.21.0 and newer, not older releases. Also worth noting that proposal golang/go#32450 was closed in its place to reassert commitment to the current new pattern, so it's unlikely to change again anytime soon. |
Also worth noting that Go 1.21.0 now has gvm-like functionality built in. See https://go.dev/doc/toolchain. |
Go version 1.21 has been released, but unlike previous versions the file that needs to be downloaded is
1.21.0
. This means bothgvm install 1.21
andgvm install 1.21.0
fail for different reasons; the former due to no file being found and the latter due to it being an invalid version.A workaround is to manually perform the following:
A good fix might be, in the case of minor releases, to check both
x.y
andx.y.0
as downloads to be robust against future changes either way from the go team.The text was updated successfully, but these errors were encountered: