Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make check-formatting failures fixed #204

Merged
merged 1 commit into from
Apr 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/kudoctl/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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))
Expand Down