1
0
mirror of https://github.com/smallstep/cli.git synced 2025-08-07 16:02:54 +03:00
Files
step-ca-cli/command/version/version.go
2024-09-30 13:25:46 +02:00

35 lines
697 B
Go

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
}