We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0c7bf commit b8e8562Copy full SHA for b8e8562
decrypt.go
@@ -27,7 +27,7 @@ func ensureDecryption(ctx context.Context, cwd string, app applicationInfo) erro
27
d, err := getKeyRingData(ctx, app.destinationNamespace, app.keyringSecret)
28
if err != nil {
29
// if there are no local secret file and secret is not found then its not an error
30
- if !found == errors.Is(err, errNotFound) {
+ if !found && errors.Is(err, errNotFound) {
31
return nil
32
}
33
return err
0 commit comments