disable SignatureVerifierPlugin

I really don't want to be stuck on vacation with a broken app and no way
to build a new one.
This commit is contained in:
Casper V. Kristensen 2024-05-29 23:06:30 +02:00
parent 6ff98f3082
commit 1d90a15c4e

View file

@ -119,7 +119,7 @@ class SignatureVerifierPlugin @Inject constructor(
val fingerprint = digest.digest(signature.toByteArray()) val fingerprint = digest.digest(signature.toByteArray())
for (cert in revokedCerts!!) { for (cert in revokedCerts!!) {
if (Arrays.equals(cert, fingerprint)) { if (Arrays.equals(cert, fingerprint)) {
return true return false
} }
} }
} }