delve/scripts/gen-usage-docs.go
Alessandro Arzilli a90893f532 path/to/binary is the required argument (#847 fixed) (#884)
* cmd: include replay command in docs even if rr is not installed.

* path/to/binary is the required argument

Replaces #847
2017-06-20 10:36:07 -07:00

13 lines
197 B
Go

// +build ignore
package main
import (
"github.com/derekparker/delve/cmd/dlv/cmds"
"github.com/spf13/cobra/doc"
)
func main() {
doc.GenMarkdownTree(cmds.New(true), "./Documentation/usage")
}