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:23:12 UTC

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

Repository: bahir-flink
Updated Branches:
  refs/heads/master 0eceb1da2 -> 55605cbde


[BAHIR-162] Stop publishing MD5 hash with releases


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

Branch: refs/heads/master
Commit: 55605cbdee9b9691802df4d22b01621533ac35b6
Parents: 0eceb1d
Author: Luciano Resende <lr...@apache.org>
Authored: Wed Apr 25 12:22:50 2018 -0700
Committer: Luciano Resende <lr...@apache.org>
Committed: Wed Apr 25 12:23:05 2018 -0700

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


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