You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2007/07/23 16:54:21 UTC

svn commit: r558758 - /spamassassin/trunk/build/update_stable

Author: jm
Date: Mon Jul 23 07:54:20 2007
New Revision: 558758

URL: http://svn.apache.org/viewvc?view=rev&rev=558758
Log:
trivial: fix build script to output md5/sha1 lines indented in the same style as the release announcement mails use

Modified:
    spamassassin/trunk/build/update_stable

Modified: spamassassin/trunk/build/update_stable
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/update_stable?view=diff&rev=558758&r1=558757&r2=558758
==============================================================================
--- spamassassin/trunk/build/update_stable (original)
+++ spamassassin/trunk/build/update_stable Mon Jul 23 07:54:20 2007
@@ -21,9 +21,9 @@
 set +x
 echo
 
-echo "md5sum of archive files:"
-cat $RELDIR/$DISTVNAME.*.md5
-
-echo "sha1sum of archive files:"
-cat $RELDIR/$DISTVNAME.*.sha1
+echo "  md5sum of archive files:"
+cat $RELDIR/$DISTVNAME.*.md5 | sed -e 's/^/  /'
+echo
+echo "  sha1sum of archive files:"
+cat $RELDIR/$DISTVNAME.*.sha1 | sed -e 's/^/  /'