diff --git a/pkg/kudoctl/cmd/version.go b/pkg/kudoctl/cmd/version.go index 6dda691f3..55d38261a 100644 --- a/pkg/kudoctl/cmd/version.go +++ b/pkg/kudoctl/cmd/version.go @@ -14,7 +14,7 @@ var ( kubectl kudo version` ) -// NewVersionCMD returns a new initialized instance of the version sub command +// NewVersionCmd returns a new initialized instance of the version sub command func NewVersionCmd() *cobra.Command { versionCmd := &cobra.Command{ Use: "version", @@ -33,7 +33,7 @@ func NewVersionCmd() *cobra.Command { return versionCmd } -// VersionCMD performs the version sub command +// VersionCmd performs the version sub command func VersionCmd(cmd *cobra.Command, args []string) error { kudoVersion := version.Get() fmt.Printf("KUDO Version: %s\n", fmt.Sprintf("%#v", kudoVersion))