From 8bc67ce3c9ee91d602af7837d415c8852c7b8309 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 28 Feb 2024 14:15:02 +0100 Subject: [PATCH] verify-images: include the file name that failed verification so that it might actually be useful.. Signed-off-by: Thomas Lamprecht --- png-verify.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/png-verify.pl b/png-verify.pl index 8eb6611..8d37a16 100755 --- a/png-verify.pl +++ b/png-verify.pl @@ -10,7 +10,7 @@ my $dpcm = 58; # expected my $tmp = `identify -units PixelsPerCentimeter -format '%x x %y' $infile`; -die "got unexpected density '$tmp' (fix with png-cleanup.pl)\n" +die "got unexpected density '$tmp' for file '$infile' (fix with png-cleanup.pl)\n" if $tmp ne "$dpcm x $dpcm"; exit 0;