]> git.proxmox.com Git - pmg-docs.git/blobdiff - png-verify.pl
verify-images: include the file name that failed verification
[pmg-docs.git] / png-verify.pl
index 8eb661139f88e3cd9f91d42d97dab034368313fb..8d37a16da705b3bf30e6cc419fc5ab6be798cb53 100755 (executable)
@@ -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;