package version import ( "fmt" "github.com/urfave/cli" "github.com/smallstep/cli-utils/command" "github.com/smallstep/cli-utils/step" "github.com/smallstep/cli/flags" ) func init() { cmd := cli.Command{ Name: "version", Usage: "display the current version of the cli", UsageText: "**step version**", Description: `**step version** prints the version of the cli.`, Action: Command, Flags: []cli.Flag{ flags.HiddenNoContext, }, } command.Register(cmd) } // Command prints out the current version of the tool func Command(*cli.Context) error { fmt.Printf("%s\n", step.Version()) fmt.Printf("Release Date: %s\n", step.ReleaseDate()) return nil }