Stuart McCulloch wrote:
ah, I post-process the checksum files with a simple script:

   for f in *.md5 ; do g=`echo $f | sed "s/\.md5//"` ; echo "  $g" >> $f ;
done
   for f in *.sha1 ; do g=`echo $f | sed "s/\.sha1//"` ; echo "  $g" >> $f ;
done

which places the target filename after the checksum :)

(this works because the generated checksums don't end with
 a newline, so we can do a simple append to fix the format)

Cool! I added the script to our release docs.

Carsten

--
Carsten Ziegeler
[EMAIL PROTECTED]

Reply via email to