2014-05-20 21:29:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-02-19 18:32:24 +00:00
|
|
|
"github.com/derekparker/delve/cmd/dlv/cmds"
|
2017-02-08 16:00:44 +00:00
|
|
|
"github.com/derekparker/delve/pkg/version"
|
2016-02-16 04:45:06 +00:00
|
|
|
)
|
2015-12-13 21:51:11 +00:00
|
|
|
|
2016-02-19 18:32:24 +00:00
|
|
|
// Build is the git sha of this binaries build.
|
|
|
|
var Build string
|
2016-01-31 23:30:40 +00:00
|
|
|
|
|
|
|
func main() {
|
2017-07-20 18:55:32 +00:00
|
|
|
if Build != "" {
|
|
|
|
version.DelveVersion.Build = Build
|
|
|
|
}
|
2017-06-20 17:36:07 +00:00
|
|
|
cmds.New(false).Execute()
|
2016-01-31 23:30:40 +00:00
|
|
|
}
|