github.com/golang/dep@v0.5.4/cmd/dep/mkdoc.sh (about) 1 #!/bin/bash 2 # Copyright 2017 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 dep.latest 9 ./dep.latest help documentation >doc.go 10 gofmt -w doc.go 11 rm dep.latest