Skip to content

Commit

Permalink
Fix Helmfile swallowing secrets decryption errors (#1849)
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502-plaid authored May 14, 2021
1 parent f38958d commit 7724160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/state/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 7724160

Please sign in to comment.