Merge pull request #801 from cosmos/cwgoes/version-dash

Dash instead of space in version output
This commit is contained in:
Ethan Buchman
2018-04-06 17:43:54 +03:00
committed by GitHub
+1 -1
View File
@@ -19,7 +19,7 @@ var (
func getVersion() string {
v := Version
if GitCommit != "" {
v = v + " " + GitCommit
v = v + "-" + GitCommit
}
return v
}