From 8c3a35e468411fbdfb59064e533e71255a86f87b Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Sat, 21 Sep 2024 21:10:22 +0200 Subject: [PATCH] Only log checksum is valid when it really is (#97) --- dist/setup/index.js | 8 +++++--- src/download/checksum/checksum.ts | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dist/setup/index.js b/dist/setup/index.js index e5498b8..151a2b9 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -87930,7 +87930,7 @@ const core = __importStar(__nccwpck_require__(2186)); const known_checksums_1 = __nccwpck_require__(4379); function validateChecksum(checkSum, downloadPath, arch, platform, version) { return __awaiter(this, void 0, void 0, function* () { - let isValid = true; + let isValid = undefined; if (checkSum !== undefined && checkSum !== "") { isValid = yield validateFileCheckSum(downloadPath, checkSum); } @@ -87946,10 +87946,12 @@ function validateChecksum(checkSum, downloadPath, arch, platform, version) { core.debug(`No known checksum found for ${key}.`); } } - if (!isValid) { + if (isValid === false) { throw new Error(`Checksum for ${downloadPath} did not match ${checkSum}.`); } - core.debug(`Checksum for ${downloadPath} is valid.`); + if (isValid === true) { + core.debug(`Checksum for ${downloadPath} is valid.`); + } }); } function validateFileCheckSum(filePath, expected) { diff --git a/src/download/checksum/checksum.ts b/src/download/checksum/checksum.ts index 3a9e063..29d5857 100644 --- a/src/download/checksum/checksum.ts +++ b/src/download/checksum/checksum.ts @@ -12,7 +12,7 @@ export async function validateChecksum( platform: Platform, version: string, ): Promise { - let isValid = true; + let isValid: boolean | undefined = undefined; if (checkSum !== undefined && checkSum !== "") { isValid = await validateFileCheckSum(downloadPath, checkSum); } else { @@ -27,10 +27,12 @@ export async function validateChecksum( } } - if (!isValid) { + if (isValid === false) { throw new Error(`Checksum for ${downloadPath} did not match ${checkSum}.`); } - core.debug(`Checksum for ${downloadPath} is valid.`); + if (isValid === true) { + core.debug(`Checksum for ${downloadPath} is valid.`); + } } async function validateFileCheckSum(