airshipctl/cmd/version.go
2019-05-24 08:15:30 -05:00

31 lines
673 B
Go

package cmd
import (
"fmt"
"io"
"github.com/spf13/cobra"
"github.com/ian-howell/airshipctl/pkg/util"
)
// NewVersionCommand prints out the versions of airshipctl and its underlying tools
func NewVersionCommand(out io.Writer) *cobra.Command {
versionCmd := &cobra.Command{
Use: "version",
Short: "Show the version number of airshipctl",
Run: func(cmd *cobra.Command, args []string) {
clientV := clientVersion()
w := util.NewTabWriter(out)
defer w.Flush()
fmt.Fprintf(w, "%s:\t%s\n", "airshipctl", clientV)
},
}
return versionCmd
}
func clientVersion() string {
// TODO(howell): There's gotta be a smarter way to do this
return "v0.1.0"
}