Fix Helmfile swallowing secrets decryption errors (#1849)

This commit is contained in:
Radon Rosborough 2021-05-13 17:19:32 -07:00 committed by GitHub
parent f38958d6d7
commit 77241607fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ func (c *StateCreator) scatterGatherEnvSecretFiles(st *HelmState, envSecretFiles
},
)
if len(errs) > 1 {
if len(errs) > 0 {
for _, err := range errs {
st.logger.Error(err)
}