Skip to content

Commit 2730b6f

Browse files
committed
fix
1 parent 201d099 commit 2730b6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/namespaces/config/commands.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -485,9 +485,9 @@ func getProfileKeys() []string {
485485
field := t.Field(i)
486486
switch field.Name {
487487
case "APIURL":
488-
keys = append(keys, "api_url")
488+
keys = append(keys, "api-url")
489489
default:
490-
keys = append(keys, strcase.ToSnake(t.Field(i).Name))
490+
keys = append(keys, strcase.ToBashArg(t.Field(i).Name))
491491
}
492492
}
493493
return keys

0 commit comments

Comments
 (0)