Merge pull request #801 from cosmos/cwgoes/version-dash
Dash instead of space in version output
This commit is contained in:
commit
9101ebd7d7
|
@ -19,7 +19,7 @@ var (
|
|||
func getVersion() string {
|
||||
v := Version
|
||||
if GitCommit != "" {
|
||||
v = v + " " + GitCommit
|
||||
v = v + "-" + GitCommit
|
||||
}
|
||||
return v
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue