From: Andrew Gerrand
Date: Wed, 25 Sep 2013 08:15:29 +0000 (+1000)
Subject: doc: mention the install locations for godoc, cover, and vet
X-Git-Tag: go1.2rc2~115
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bc0e51555c35552415eb5d4560b43b4bff0e944b;p=gostls13.git
doc: mention the install locations for godoc, cover, and vet
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/13893043
---
diff --git a/doc/install-source.html b/doc/install-source.html
index 9aaf588124..59d984fd38 100644
--- a/doc/install-source.html
+++ b/doc/install-source.html
@@ -250,6 +250,16 @@ You must also have a workspace (GOPATH
) set up;
see How to Write Go Code for the details.
+
+Note: The go
command will install the godoc
+binary to $GOROOT/bin
(or $GOBIN
) and the
+cover
and vet
binaries to
+$GOROOT/pkg/tool/$GOOS_$GOARCH
.
+You can access the latter commands with
+"go
tool
cover
" and
+"go
tool
vet
".
+
+