mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-31 04:14:37 +00:00
Replace separator for nested keys for consistency
This commit is contained in:
parent
c4ab009857
commit
8677dd6909
1 changed files with 2 additions and 2 deletions
|
@ -228,7 +228,7 @@ func recurseSecretKey(keys map[string]interface{}, wantedKey string) (string, er
|
|||
val, ok = currentData[currentKey]
|
||||
if !ok {
|
||||
if keyUntilNow != "" {
|
||||
keyUntilNow += "."
|
||||
keyUntilNow += "/"
|
||||
}
|
||||
return "", fmt.Errorf("The key '%s%s' cannot be found", keyUntilNow, currentKey)
|
||||
}
|
||||
|
@ -238,7 +238,7 @@ func recurseSecretKey(keys map[string]interface{}, wantedKey string) (string, er
|
|||
if keyUntilNow == "" {
|
||||
keyUntilNow = thisKey
|
||||
} else {
|
||||
keyUntilNow += "." + thisKey
|
||||
keyUntilNow += "/" + thisKey
|
||||
}
|
||||
currentKey = currentKey[(slashIndex + 1):]
|
||||
val, ok = currentData[thisKey]
|
||||
|
|
Loading…
Add table
Reference in a new issue