Browse Source

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

pull/923/head
Anton Kaliaev 7 years ago
parent
commit
b3e1341e44
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      version/version.go

+ 4
- 3
version/version.go View File

@ -5,15 +5,16 @@ const Min = "12"
const Fix = "1"
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"
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
// GitCommit is the current HEAD set using ldflags.
GitCommit string
)
func init() {
if GitCommit != "" {
Version += "-" + GitCommit[:8]
Version += "-" + GitCommit
}
}

Loading…
Cancel
Save