Skip to content

Commit

Permalink
make exp redable
Browse files Browse the repository at this point in the history
  • Loading branch information
asiyani committed Nov 22, 2023
1 parent fa0c7bf commit b8e8562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func ensureDecryption(ctx context.Context, cwd string, app applicationInfo) erro
d, err := getKeyRingData(ctx, app.destinationNamespace, app.keyringSecret)
if err != nil {
// if there are no local secret file and secret is not found then its not an error
if !found == errors.Is(err, errNotFound) {
if !found && errors.Is(err, errNotFound) {
return nil
}
return err
Expand Down

0 comments on commit b8e8562

Please sign in to comment.