1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
package version
import (
"fmt"
"github.com/urfave/cli"
"github.com/smallstep/cli/command"
"github.com/smallstep/cli/config"
)
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,
}
command.Register(cmd)
}
// Command prints out the current version of the tool
func Command(c *cli.Context) error {
fmt.Printf("%s\n", config.Version())
fmt.Printf("Release Date: %s\n", config.ReleaseDate())
return nil
}
|