You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2015/10/21 06:48:03 UTC

svn commit: r1709714 - /openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml

Author: solomax
Date: Wed Oct 21 04:48:03 2015
New Revision: 1709714

URL: http://svn.apache.org/viewvc?rev=1709714&view=rev
Log:
MD5 is replaced with shasum in release guide

Modified:
    openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml

Modified: openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml
URL: http://svn.apache.org/viewvc/openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml?rev=1709714&r1=1709713&r2=1709714&view=diff
==============================================================================
--- openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml (original)
+++ openmeetings/trunk/singlewebapp/openmeetings-server/src/site/xdoc/ReleaseGuide.xml Wed Oct 21 04:48:03 2015
@@ -133,18 +133,18 @@ svn copy -r1453158 https://svn.apache.or
 				<source>ant dist-release</source>
 				<p>Test building the source on windows and OSx or Linux</p>
 				<p>Test running the binary's</p>
-				<p>Create MD5 checksums</p>
+				<p>Create sha256sum checksums</p>
 				<source>
 #On OSX you might use this command to make a MD5 checksum and store it to a file
-md5 -r apache-openmeetings-XXX-src.zip >apache-openmeetings-XXX-src.zip.md5
+shasum -a 256 -r apache-openmeetings-XXX-src.zip >apache-openmeetings-XXX-src.zip.md5
 				</source>
 				<source>
 <![CDATA[
 #To create MD5 hashes On Ubuntu:
-for f in `ls -1 *.tar.gz *.zip`; do md5sum $f > $f.md5; done
+for f in `ls -1 *.tar.gz *.zip`; do sha256sum $f > $f.sha; done
 
 #To check MD5 hashes On Ubuntu:
-for f in `ls -1 *.tar.gz *.zip`; do md5sum -c $f.md5; done
+for f in `ls -1 *.tar.gz *.zip`; do sha256sum -c $f.sha; done
 ]]>
 				</source>
 				<p>