
* cmd: include replay command in docs even if rr is not installed. * path/to/binary is the required argument Replaces #847
13 lines
197 B
Go
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")
|
|
}
|