status-go/cmd/status/main.go

28 lines
646 B
Go
Raw Normal View History

package main
import (
"fmt"
"github.com/status-im/status-go/geth"
2016-06-20 14:47:10 +00:00
)
var (
gitCommit = "rely on linker: -ldflags -X main.GitCommit"
buildStamp = "rely on linker: -ldflags -X main.buildStamp"
)
2016-06-20 15:21:45 +00:00
func main() {
verString := fmt.Sprintf("%d.%d.%d", geth.VersionMajor, geth.VersionMinor, geth.VersionPatch)
if geth.VersionMeta != "" {
verString += "-" + geth.VersionMeta
2016-09-21 12:22:42 +00:00
}
if gitCommit != "" {
verString += "-" + gitCommit[:8]
}
netVersion := "mainnet"
if geth.UseTestnet {
netVersion = "testnet"
}
fmt.Printf("Status\nGit Commit: %s\nBuild Time: %s\nVersion: %s\nNetwork: %s\n",
gitCommit, buildStamp, verString, netVersion)
2016-06-20 15:21:45 +00:00
}