Remove 'v'

This commit is contained in:
vishalnayak 2016-09-01 15:23:23 -04:00
parent 9c78c58948
commit 3099503811
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func (c *VersionInfo) VersionNumber() string {
return "(version unknown)"
}
version := fmt.Sprintf("v%s", c.Version)
version := fmt.Sprintf("%s", c.Version)
if c.VersionPrerelease != "" {
version = fmt.Sprintf("%s-%s", version, c.VersionPrerelease)