Fixed: Fix bootstrap checksum check if it contained leading zeros

This commit is contained in:
agnostic-apollo 2022-01-08 00:23:40 +05:00
parent 085b17e496
commit 903b1c75a2
1 changed files with 1 additions and 0 deletions

View File

@ -177,6 +177,7 @@ def downloadBootstrap(String arch, String expectedChecksum, String version) {
out.close()
def checksum = new BigInteger(1, digest.digest()).toString(16)
while (checksum.length() < 64) { checksum = "0" + checksum }
if (checksum != expectedChecksum) {
file.delete()
throw new GradleException("Wrong checksum for " + remoteUrl + ": expected: " + expectedChecksum + ", actual: " + checksum)