You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by lr...@apache.org on 2018/04/25 19:22:43 UTC

bahir git commit: [BAHIR-162] Stop publishing MD5 hash with releases

Repository: bahir
Updated Branches:
  refs/heads/master 70f6ba0e4 -> adeb24ba8


[BAHIR-162] Stop publishing MD5 hash with releases


Project: http://git-wip-us.apache.org/repos/asf/bahir/repo
Commit: http://git-wip-us.apache.org/repos/asf/bahir/commit/adeb24ba
Tree: http://git-wip-us.apache.org/repos/asf/bahir/tree/adeb24ba
Diff: http://git-wip-us.apache.org/repos/asf/bahir/diff/adeb24ba

Branch: refs/heads/master
Commit: adeb24ba86cc2a406b4305c0199ae7c451862fe8
Parents: 70f6ba0
Author: Luciano Resende <lr...@apache.org>
Authored: Wed Apr 25 12:22:03 2018 -0700
Committer: Luciano Resende <lr...@apache.org>
Committed: Wed Apr 25 12:22:03 2018 -0700

----------------------------------------------------------------------
 dev/release-build.sh | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bahir/blob/adeb24ba/dev/release-build.sh
----------------------------------------------------------------------
diff --git a/dev/release-build.sh b/dev/release-build.sh
index aa928ac..283dccf 100755
--- a/dev/release-build.sh
+++ b/dev/release-build.sh
@@ -264,8 +264,6 @@ if [[ "$RELEASE_PREPARE" == "true" ]]; then
         cd svn-bahir/$RELEASE_VERSION-$RELEASE_RC/
         rm -f *.asc
         for i in *.zip *.tar.gz; do gpg --output $i.asc --detach-sig --armor $i; done
-        rm -f *.md5
-        for i in *.zip *.tar.gz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done
         rm -f *.sha*
         for i in *.zip *.tar.gz; do shasum --algorithm 512 $i > $i.sha512; done