From 6f95b1f0c944033ed165cb188ac58300b85514a5 Mon Sep 17 00:00:00 2001 From: WhiredPlanck Date: Sun, 24 Mar 2024 14:14:51 +0800 Subject: [PATCH] log detail checksum --- scripts/checksum.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } }