Skip to content

Commit

Permalink
better error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamiell committed Dec 5, 2021
1 parent 5070faa commit 7c2494f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/childProcesses/isaacRacingPlusMod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function checkCorruptOrMissingFiles(
if (fileHash !== backupFileHash) {
process.send(`File is corrupt: ${filePath}`);
process.send(
`The hash of "${fileHash}" does not match the hash of "${backupFileHash}" from the "sha1.json" file.`,
`The hash of "${fileHash}" does not match the hash of "${backupFileHash}" for the file of "${filePath}" (when comparing using the "sha1.json" file from "${SHA1_HASHES_URL}").`,
);
modIsCorrupt = true;
}
Expand Down

0 comments on commit 7c2494f

Please sign in to comment.