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
commit 9101ebd7d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ var (
func getVersion() string {
v := Version
if GitCommit != "" {
v = v + " " + GitCommit
v = v + "-" + GitCommit
}
return v
}