github.com/sean-/go@v0.0.0-20151219100004-97f854cd7bb6/src/cmd/go/mkalldocs.sh (about) 1 #!/bin/bash 2 # Copyright 2012 The Go Authors. All rights reserved. 3 # Use of this source code is governed by a BSD-style 4 # license that can be found in the LICENSE file. 5 6 set -e 7 8 go build -o go.latest 9 ./go.latest help documentation | sed 's; \*/; * /;' >alldocs.go 10 gofmt -w alldocs.go 11 rm go.latest 12