Skip to content

Commit

Permalink
Fix version printing.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdappollonio committed Sep 3, 2024
1 parent f6fbb6d commit 8b2fb56
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ See the LICENSE file for more details.
package cmd

import (
"fmt"

"github.com/konstructio/kubefirst-api/pkg/configs"
"github.com/konstructio/kubefirst/internal/progress"
"github.com/spf13/cobra"
Expand All @@ -25,7 +23,7 @@ var versionCmd = &cobra.Command{
Run: func(cmd *cobra.Command, _ []string) {
versionMsg := `
##
### kubefirst-cli golang utility version:` + fmt.Sprintf("%s", configs.K1Version)
### kubefirst-cli golang utility version: ` + configs.K1Version

progress.Success(versionMsg)
},
Expand Down

0 comments on commit 8b2fb56

Please sign in to comment.