diff options
author | Andrew Gerrand <adg@golang.org> | 2012-09-27 15:36:22 -0700 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2012-09-27 15:36:22 -0700 |
commit | 08b97d4061dd75ceec1d44e4335183cd791c9306 (patch) | |
tree | 78d0417233287ec2ec8619c0a5aed69e5e8c1b85 | |
parent | 94ee5f60496992221074cb2af76a59b4d4367543 (diff) | |
download | go-git-release-branch.go1.tar.gz |
[release-branch.go1] doc: clarify that the displayed tar file name is an examplerelease-branch.go1
««« CL 6573065 / 49b27543b08b
doc: clarify that the displayed tar file name is an example
R=golang-dev, dave, r
CC=golang-dev
https://golang.org/cl/6573065
»»»
R=golang-dev
CC=golang-dev
https://golang.org/cl/6571068
-rw-r--r-- | doc/install.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/install.html b/doc/install.html index 0d20869704..ccc6eda303 100644 --- a/doc/install.html +++ b/doc/install.html @@ -116,14 +116,20 @@ rm -r /usr/local/go <p> Extract <a href="http://code.google.com/p/go/downloads/list?q=OpSys-FreeBSD+OR+OpSys-Linux+OR+OpSys-OSX+Type-Archive">the archive</a> -into <code>/usr/local</code>, creating a Go tree in <code>/usr/local/go</code>: +into <code>/usr/local</code>, creating a Go tree in <code>/usr/local/go</code>. +For example: </p> <pre> -tar -C /usr/local -xzf go1.0.2.linux-amd64.tar.gz +tar -C /usr/local -xzf go1.0.3.linux-amd64.tar.gz </pre> <p> +The name of the archive may differ, depending on the version of Go you are +installing and your system's operating system and processor architecture. +</p> + +<p> (Typically these commands must be run as root or through <code>sudo</code>.) </p> |