diff --git a/scripts/checksum.ts b/scripts/checksum.ts index b90615f..5fdefb7 100644 --- a/scripts/checksum.ts +++ b/scripts/checksum.ts @@ -11,7 +11,7 @@ while (match = iter.next(), match.value) { // eslint-disable-line no-sequences const path = match.value[2] const actual = md5sum(path) if (expected !== actual) { - console.error(`Checksum mismatch for ${path}`) + console.error(`Checksum mismatch for ${path}, expected ${expected}, got ${actual}`) exit(1) } }