Open
Description
If I visit this URL: https://golang.org/doc/install?download=go1.15.2.darwin-amd64.tar.gz
I see instructions that read:
Open the package file you downloaded and follow the prompts to install Go.
The package installs the Go distribution to /usr/local/go. The package should put the /usr/local/go/bin directory in your PATH environment variable. You may need to restart any open Terminal sessions for the change to take effect.
This is incorrect for the tar.gz file, which when clicked on creates a "go" directory in the same parent directory as wherever the tarball was downloaded (usually ~/Downloads
on a Mac).
We should probably instead instruct people to move the go
folder to /usr/local
or somewhere else on their PATH.