fix: avoid duplicate v in CLI help banner

This commit is contained in:
Robert Bopko 2026-04-03 19:58:52 +02:00
parent d8c5183d9a
commit cbd0798a56

View file

@ -29,7 +29,7 @@ import (
)
func NewPicoclawCommand() *cobra.Command {
short := fmt.Sprintf("%s picoclaw - Personal AI Assistant v%s\n\n", internal.Logo, config.GetVersion())
short := fmt.Sprintf("%s picoclaw - Personal AI Assistant %s\n\n", internal.Logo, config.GetVersion())
cmd := &cobra.Command{
Use: "picoclaw",