delve/cmd/dlv/main.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

15 lines
260 B
Go

package main
import (
"github.com/derekparker/delve/cmd/dlv/cmds"
"github.com/derekparker/delve/pkg/version"
)
// Build is the git sha of this binaries build.
var Build string
func main() {
version.DelveVersion.Build = Build
cmds.New(false).Execute()
}