Let git compute version number

This commit is contained in:
Søren L. Hansen 2021-04-22 08:20:08 -07:00
parent 9fb9c5ccb8
commit 4a423fdf88
3 changed files with 3 additions and 4 deletions

View file

@ -20,7 +20,7 @@ import (
func main() {
app := cli.NewApp()
app.Name = "gotty"
app.Version = Version + "+" + CommitID
app.Version = Version
app.Usage = "Share your terminal as a web application"
app.HideHelpCommand = true
appOptions := &server.Options{}