LoadEncryptedFile loads an encrypted SOPS file, returning a SOPS tree
(loader sops.EncryptedFileLoader, inputPath string)
| 157 | |
| 158 | // LoadEncryptedFile loads an encrypted SOPS file, returning a SOPS tree |
| 159 | func LoadEncryptedFile(loader sops.EncryptedFileLoader, inputPath string) (*sops.Tree, error) { |
| 160 | return LoadEncryptedFileEx(loader, inputPath, false) |
| 161 | } |
| 162 | |
| 163 | // NewExitError returns a cli.ExitError given an error (wrapped in a generic interface{}) |
| 164 | // and an exit code to represent the failure |
no test coverage detected