Skip to content

Commit

Permalink
Tiny typo base65 -> base64
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjohnburton authored and isindir committed Sep 7, 2021
1 parent b54f95a commit 36ec7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/sopssecret_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func newSecretForCR(
for key, value := range secretTpl.Data {
decoded, err := base64.StdEncoding.DecodeString(value)
if err != nil {
return nil, fmt.Errorf("newSecretForCR(): data[%v] is not a valid base65 string", key)
return nil, fmt.Errorf("newSecretForCR(): data[%v] is not a valid base64 string", key)
}
strData[key] = string(decoded)
}
Expand Down

0 comments on commit 36ec7bc

Please sign in to comment.