Dash instead of space in version output

This commit is contained in:
Christopher Goes 2018-04-05 20:02:35 +02:00
parent 1629ddad1c
commit 109126d7fe
No known key found for this signature in database
GPG Key ID: E828D98232D328D3
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
}