You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2018/04/17 06:48:13 UTC

[03/50] [abbrv] hbase git commit: HBASE-20385 Purge md5-making from our little make_rc.sh script

HBASE-20385 Purge md5-making from our little make_rc.sh script


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

Branch: refs/heads/HBASE-19064
Commit: 3eda9f1bb36981368cd10e2d56dca4788a4e0989
Parents: ba02a86
Author: Michael Stack <st...@apache.org>
Authored: Tue Apr 10 15:50:26 2018 -0700
Committer: Michael Stack <st...@apache.org>
Committed: Wed Apr 11 09:18:21 2018 -0700

----------------------------------------------------------------------
 dev-support/make_rc.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/3eda9f1b/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 640bcd1..7369179 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -110,10 +110,9 @@ MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
 # Do sha512 and md5
 cd ${output_dir}
 for i in *.tar.gz; do echo $i; gpg --print-md SHA512 $i > $i.sha512 ; done
-for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done
 
 echo "Check the content of ${output_dir}.  If good, sign and push to dist.apache.org"
 echo " cd ${output_dir}"
 echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i  ; done'
-echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
+echo " rsync -av ${output_dir}/*.gz ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/"
 echo "Check the content deployed to maven.  If good, close the repo and record links of temporary staging repo"