Commit 81a89606 authored by Andrew Gerrand's avatar Andrew Gerrand

doc: remove mention of %HOME% from installation instructions

Fixes #15598

Change-Id: I4cfb8799dab0e9e34cae2e61839911fd65e4cfa3
Reviewed-on: https://go-review.googlesource.com/23004Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent f77f22b2
...@@ -221,7 +221,7 @@ and building a simple program, as follows. ...@@ -221,7 +221,7 @@ and building a simple program, as follows.
<p> <p>
Create a directory to contain your <a href="code.html#Workspaces">workspace</a>, Create a directory to contain your <a href="code.html#Workspaces">workspace</a>,
<code class="testUnix">$HOME/work</code> <code class="testUnix">$HOME/work</code>
<code class="testWindows" style="display: none">%HOME%\work</code> <code class="testWindows" style="display: none">C:\work</code>
for example, and set the <code>GOPATH</code> environment for example, and set the <code>GOPATH</code> environment
variable to point to that location. variable to point to that location.
</p> </p>
...@@ -231,7 +231,7 @@ $ <b>export GOPATH=$HOME/work</b> ...@@ -231,7 +231,7 @@ $ <b>export GOPATH=$HOME/work</b>
</pre> </pre>
<pre class="testWindows" style="display: none"> <pre class="testWindows" style="display: none">
C:\&gt; <b>set GOPATH=%HOME%\work</b> C:\&gt; <b>set GOPATH=C:\work</b>
</pre> </pre>
<p> <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment