1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00

fix version printing

This commit is contained in:
Zack 2024-12-07 07:20:35 -08:00
parent 5c4db82e46
commit d2d44ef698

View file

@ -36,7 +36,7 @@ func Run() (err error) {
app := cli.NewApp() app := cli.NewApp()
app.Name = "croc" app.Name = "croc"
if Version == "" { if Version == "" {
Version = "v10.1.0" Version = "v10.1.2"
} }
app.Version = Version app.Version = Version
app.Compiled = time.Now() app.Compiled = time.Now()