You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2018/03/13 19:23:07 UTC

svn commit: r25689 - /dev/activemq/activemq-artemis/prepare-release.sh

Author: tabish
Date: Tue Mar 13 19:23:07 2018
New Revision: 25689

Log:
Remove MD5 portions to comply with new release guidelines

Modified:
    dev/activemq/activemq-artemis/prepare-release.sh

Modified: dev/activemq/activemq-artemis/prepare-release.sh
==============================================================================
--- dev/activemq/activemq-artemis/prepare-release.sh (original)
+++ dev/activemq/activemq-artemis/prepare-release.sh Tue Mar 13 19:23:07 2018
@@ -29,7 +29,7 @@ error () {
    echo "Usage: ./prepare-release.sh repo-url version [target-dir (defaults to version, must not exist)]"
    echo ""
    echo "example:"
-   echo "./prepare-release.sh https://repo1.maven.org/maven2 2.3.0"
+   echo "./prepare-release.sh https://repo1.maven.org/maven2 2.5.0"
    echo ""
    exit 64
 }
@@ -47,15 +47,9 @@ doDownload () {
   echo "Downloading $theFile.asc"
   curl $completeURL.asc > $theFile.asc
 
-  echo "Downloading $theFile.md5"
-  curl $completeURL.md5 > $theFile.md5
-
   echo "Verifying signature $theFile.asc"
   gpg --verify $theFile.asc
 
-  echo "Augmenting $theFile.md5 with filename details"
-  echo "  $theFile" >> $theFile.md5
-
   echo "Generating SHA512 checksum file $theFile.sha512"
   sha512sum $theFile > $theFile.sha512
 }
@@ -86,9 +80,6 @@ doDownload apache-artemis-$release-sourc
 echo ""
 echo "--- Download Complete for Release $2 Artifacts are in $target---"
 echo ""
-echo "Validating all MD5 checksum files"
-md5sum -c *.md5
-
 echo "Validating all SHA512 checksum files"
 sha512sum -c *.sha512