Skip to content

Commit b8e8562

Browse files
committed
make exp redable
1 parent fa0c7bf commit b8e8562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decrypt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func ensureDecryption(ctx context.Context, cwd string, app applicationInfo) erro
2727
d, err := getKeyRingData(ctx, app.destinationNamespace, app.keyringSecret)
2828
if err != nil {
2929
// if there are no local secret file and secret is not found then its not an error
30-
if !found == errors.Is(err, errNotFound) {
30+
if !found && errors.Is(err, errNotFound) {
3131
return nil
3232
}
3333
return err

0 commit comments

Comments
 (0)