use get rev-parse --short HEAD everywhere instead of GitCommit[:8]

This commit is contained in:
Anton Kaliaev 2017-12-04 22:16:19 -06:00
parent ebdc7ddf20
commit b3e1341e44
No known key found for this signature in database
GPG Key ID: 7B6881D965918214

View File

@ -5,15 +5,16 @@ const Min = "12"
const Fix = "1" const Fix = "1"
var ( var (
// The full version string // Version is the current version of Tendermint
// Must be a string because scripts like dist.sh read this file.
Version = "0.12.1" Version = "0.12.1"
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)" // GitCommit is the current HEAD set using ldflags.
GitCommit string GitCommit string
) )
func init() { func init() {
if GitCommit != "" { if GitCommit != "" {
Version += "-" + GitCommit[:8] Version += "-" + GitCommit
} }
} }