You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
What did you do?
The suggested command for installing Go is not working with 1.21.0. sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz
Tar generates a folder with 750 permissions:
$ ls -la /usr/local
...
drwxr-x--- 10 root 4096 sept. 6 17:39 go
...
So a chmod 755 -R is neecessary.
With 1.20.7 no problems:
$ sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.20.7.linux-amd64.tar.gz
$ ls -la /usr/local
...
drwxr-xr-x 10 root 4096 juil. 26 23:43 go
...
What did you expect to see?
/usr/local/go with 755 permissions.
What did you see instead?
/usr/local/go with 750 permissions.
The text was updated successfully, but these errors were encountered:
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?
The suggested command for installing Go is not working with 1.21.0.
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz
Tar generates a folder with 750 permissions:
So a chmod 755 -R is neecessary.
With 1.20.7 no problems:
What did you expect to see?
/usr/local/go
with 755 permissions.What did you see instead?
/usr/local/go
with 750 permissions.The text was updated successfully, but these errors were encountered: