1
0
Fork 0
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:
Janne Heß 2021-11-24 17:19:03 +01:00
parent c4ab009857
commit 8677dd6909
No known key found for this signature in database
GPG key ID: 69165158F05265DF

View file

@ -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]