Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jerome-quere committed Jun 1, 2020
1 parent 201d099 commit 2730b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/namespaces/config/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -485,9 +485,9 @@ func getProfileKeys() []string {
field := t.Field(i)
switch field.Name {
case "APIURL":
keys = append(keys, "api_url")
keys = append(keys, "api-url")
default:
keys = append(keys, strcase.ToSnake(t.Field(i).Name))
keys = append(keys, strcase.ToBashArg(t.Field(i).Name))
}
}
return keys
Expand Down

0 comments on commit 2730b6f

Please sign in to comment.