()
| 47 | var customExternalSecretsPath string |
| 48 | |
| 49 | func getExternalSecretsPath() string { |
| 50 | if customExternalSecretsPath != "" { |
| 51 | return customExternalSecretsPath |
| 52 | } |
| 53 | |
| 54 | return defaultExternalSecretsPath |
| 55 | } |
| 56 | |
| 57 | // ErrInvalidPathComponent is returned when a value that is used as a filesystem |
| 58 | // path component contains a path separator or a parent-directory reference, both |
no outgoing calls
no test coverage detected