PHOENIX-4776 Remove creation of .md5 files from dev/make_rc.sh

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

Branch: refs/heads/4.x-cdh5.15
Commit: 2c008068e4768dfb2dc1fbd907d1072ae507769e
Parents: 39a7785
Author: Pedro Boado <pbo...@apache.org>
Authored: Mon Jun 11 23:35:56 2018 +0100
Committer: Pedro Boado <pbo...@apache.org>
Committed: Wed Oct 17 21:25:37 2018 +0100

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


http://git-wip-us.apache.org/repos/asf/phoenix/blob/2c008068/dev/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev/make_rc.sh b/dev/make_rc.sh
index 9bff7d1..963a9d8 100755
--- a/dev/make_rc.sh
+++ b/dev/make_rc.sh
@@ -123,13 +123,11 @@ function_sign() {
   # if on MAC OS
   if [[ "$OSTYPE" == "darwin"* ]]; then
     gpg2 --armor --output $file.asc --detach-sig $file;
-    openssl md5 $file > $file.md5;
     openssl dgst -sha512 $file > $file.sha512;
     openssl dgst -sha256 $file >> $file.sha256;
   # all other OS
   else
     gpg --armor --output $file.asc --detach-sig $file;
-    md5sum -b $file > $file.md5;
     sha512sum -b $file > $file.sha512;
     sha256sum -b $file >> $file.sha256;
   fi

Reply via email to