Skip to content

Commit

Permalink
add empty line after each set of resources
Browse files Browse the repository at this point in the history
  • Loading branch information
gmeghnag committed Aug 22, 2022
1 parent 3e1abdf commit d11b61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/get/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,16 @@ var GetCmd = &cobra.Command{
if c.Use != "get" {
os.Args = append([]string{os.Args[0], "get", crdAlias}, "")
c.Execute()
fmt.Println("")
} else {

isValidResource := getGenericResourceFromCRD(crdAlias, emptyslice)
if !isValidResource {
fmt.Println("Invalid object type:", crdAlias)
os.Exit(1)
}
fmt.Println("")
}
}
fmt.Println("")
} else {
c, _, err := cmd.Find([]string{args[0]})
if err != nil {
Expand Down

0 comments on commit d11b61e

Please sign in to comment.