You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/03/27 23:32:44 UTC

svn commit: r759378 - /incubator/pivot/trunk/build.xml

Author: tvolkert
Date: Fri Mar 27 22:32:44 2009
New Revision: 759378

URL: http://svn.apache.org/viewvc?rev=759378&view=rev
Log:
Added SHA checksum for dist artifacts as well (as MD5, which was already being done)

Modified:
    incubator/pivot/trunk/build.xml

Modified: incubator/pivot/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/build.xml?rev=759378&r1=759377&r2=759378&view=diff
==============================================================================
--- incubator/pivot/trunk/build.xml (original)
+++ incubator/pivot/trunk/build.xml Fri Mar 27 22:32:44 2009
@@ -676,6 +676,7 @@
             <fileset dir="${dist}" includes="${release}/**"/>
         </zip>
         <checksum file="${dist}/${release}.zip" algorithm="md5"/>
+        <checksum file="${dist}/${release}.zip" algorithm="sha"/>
 
         <!-- Create the .tar.gz archive -->
         <tar destfile="${dist}/${release}.tar" longfile="gnu">
@@ -684,6 +685,7 @@
         <gzip src="${dist}/${release}.tar" destfile="${dist}/${release}.tar.gz"/>
         <delete file="${dist}/${release}.tar"/>
         <checksum file="${dist}/${release}.tar.gz" algorithm="md5"/>
+        <checksum file="${dist}/${release}.tar.gz" algorithm="sha"/>
     </target>
 
     <!-- Generate deployment files for online demos and tutorials -->