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
+1 -1
View File
@@ -19,7 +19,7 @@ var (
func getVersion() string {
v := Version
if GitCommit != "" {
v = v + " " + GitCommit
v = v + "-" + GitCommit
}
return v
}