Skip to content

Commit

Permalink
Bumped version and fixed formatting on root command
Browse files Browse the repository at this point in the history
  • Loading branch information
phenixblue committed Apr 8, 2019
1 parent a433283 commit 179df11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ environment variable needs to be set to a valid kubeconfig file.`,

if string(node) != "" {

kv := strings.Split(string(node), " ")
kv := strings.Fields(string(node))

v := kv[1]

Expand All @@ -78,7 +78,6 @@ environment variable needs to be set to a valid kubeconfig file.`,

w := printers.GetNewTabWriter(os.Stdout)
defer w.Flush()
fmt.Fprintln(w, "AZ")

for _, az := range azsSort {

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import "github.com/phenixblue/kubectl-azs/cmd"
var (

// VERSION defines the version of the utility.
VERSION = "v0.0.4"
VERSION = "v0.0.5"
)

func main() {
Expand Down

0 comments on commit 179df11

Please sign in to comment.