fix: get proper version

This commit is contained in:
Antoine Aflalo
2024-08-27 20:22:22 -04:00
parent c8fe726a96
commit f451b660be
4 changed files with 12 additions and 22 deletions

View File

@@ -4,6 +4,13 @@ import (
"github.com/belphemur/CBZOptimizer/cmd"
)
var (
version = "dev"
commit = "none"
date = "unknown"
)
func main() {
cmd.SetVersionInfo(version, commit, date)
cmd.Execute()
}