Skip to content

Commit 179df11

Browse files
committed
Bumped version and fixed formatting on root command
1 parent a433283 commit 179df11

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cmd/root.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ environment variable needs to be set to a valid kubeconfig file.`,
5858

5959
if string(node) != "" {
6060

61-
kv := strings.Split(string(node), " ")
61+
kv := strings.Fields(string(node))
6262

6363
v := kv[1]
6464

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

7979
w := printers.GetNewTabWriter(os.Stdout)
8080
defer w.Flush()
81-
fmt.Fprintln(w, "AZ")
8281

8382
for _, az := range azsSort {
8483

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import "github.com/phenixblue/kubectl-azs/cmd"
1919
var (
2020

2121
// VERSION defines the version of the utility.
22-
VERSION = "v0.0.4"
22+
VERSION = "v0.0.5"
2323
)
2424

2525
func main() {

0 commit comments

Comments
 (0)