Use i not 1

This commit is contained in:
Tom Hu 2021-04-16 07:58:51 -04:00
parent 6ac8172373
commit 864620acb9
No known key found for this signature in database
GPG key ID: F7E832BD316D5603
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ const validateUploader = async (body) => {
const uploaderChecksum = calculateChecksum(body, i);
if (uploaderChecksum !== publicChecksum.trim()) {
core.warning(
`Codecov ${version} checksums for SHA1 failed to match.\n` +
`Codecov ${version} checksums for SHA${i} failed to match.\n` +
`Public checksum: ${publicChecksum}` +
`Uploader checksum: ${uploaderChecksum}`,
);