Skip to content

Commit

Permalink
test: skeptical
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Oct 25, 2023
1 parent 0c9caad commit 96093ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ const verify = async (
if (verbose) {
console.log(`Received SHA256SUM ${shasum}`);
}
setFailure(`Codecov: Error validating uploader: ${err.message}`, failCi);

const shaSigRes = await request(
`${getBaseUrl(platform, version)}.SHA256SUM.sig`,
);
const shaSig = await shaSigRes.body.text();
const shaSig = await shaSigRes.text();
if (verbose) {
console.log(`Received SHA256SUM signature ${shaSig}`);
}
Expand Down

0 comments on commit 96093ce

Please sign in to comment.