Skip to content

Commit

Permalink
removal of old logo
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed Aug 18, 2024
1 parent dc8f10f commit e0d6064
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion cli/cmd/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

func newLogo() string {
x := strings.Split(v2_0Ksctl, "\n")
x := strings.Split(logoKsctl, "\n")

y := []string{}

Expand Down
15 changes: 1 addition & 14 deletions cli/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,11 @@ package cmd
import (
"fmt"

"github.com/fatih/color"
"github.com/spf13/cobra"
)

const (
v0_1Ksctl = `
_ _ _
| | | | | |
| | _____ ___| |_| |
| |/ / __|/ __| __| |
| <\__ \ (__| |_| |
|_|\_\___/\___|\__|_|
`

v2_0Ksctl = `
logoKsctl = `
░ ░░░░ ░░░ ░░░░ ░░░ ░░ ░░░░░░░
▒ ▒▒▒ ▒▒▒ ▒▒▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒ ▒▒▒▒▒▒▒
▓ ▓▓▓▓▓▓ ▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓▓▓
Expand All @@ -38,8 +27,6 @@ var versionCmd = &cobra.Command{
Short: "Print the version number of ksctl",
Run: func(cmd *cobra.Command, args []string) {

color.HiGreen(v0_1Ksctl)

fmt.Println(newLogo())

fmt.Println("Version:", Version)
Expand Down

0 comments on commit e0d6064

Please sign in to comment.