Skip to content

Commit a18afbf

Browse files
authored
fix(cli): invalid formatting in tk status (#399)
1 parent 73101c4 commit a18afbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tk/status.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func statusCmd() *cli.Command {
3434
fmt.Println("Cluster:", context.Context.Cluster)
3535
fmt.Println("Environment:")
3636
for k, v := range structs.Map(status.Env.Spec) {
37-
fmt.Printf(" %s: %s\n", k, v)
37+
fmt.Printf(" %s: %v\n", k, v)
3838
}
3939

4040
fmt.Println("Resources:")

0 commit comments

Comments
 (0)