verify-images: include the file name that failed verification

so that it might actually be useful..

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2024-02-28 14:15:02 +01:00
parent c07cdc194c
commit 8bc67ce3c9

View File

@ -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;