34 lines
646 B
Go
34 lines
646 B
Go
package version
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/sipeed/picoclaw/cmd/picoclaw/internal"
|
|
"github.com/sipeed/picoclaw/pkg/config"
|
|
)
|
|
|
|
func NewVersionCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "version",
|
|
Aliases: []string{"v"},
|
|
Short: "Show version information",
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
printVersion()
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func printVersion() {
|
|
fmt.Printf("%s picoclaw %s\n", internal.Logo, config.FormatVersion())
|
|
build, goVer := config.FormatBuildInfo()
|
|
if build != "" {
|
|
fmt.Printf(" Build: %s\n", build)
|
|
}
|
|
if goVer != "" {
|
|
fmt.Printf(" Go: %s\n", goVer)
|
|
}
|
|
}
|