You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by vi...@apache.org on 2018/11/13 08:13:42 UTC

[incubator-dubbo] branch 2.6.5-release updated: fix #2459 sha512 issue

This is an automated email from the ASF dual-hosted git repository.

victory pushed a commit to branch 2.6.5-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/2.6.5-release by this push:
     new 7b1985a  fix #2459  sha512 issue
7b1985a is described below

commit 7b1985a1a671c9f43f2972ac2bf76066badf641c
Author: cvictory <sh...@gmail.com>
AuthorDate: Tue Nov 13 16:13:20 2018 +0800

    fix #2459  sha512 issue
---
 release.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/release.sh b/release.sh
index d5e9401..187c819 100755
--- a/release.sh
+++ b/release.sh
@@ -150,8 +150,8 @@ git reset --hard $COMMIT_ID
 
 cd distribution/target
 echo "Start to shasum for bin/source.zip"
-shasum -a 512 apache-dubbo-incubating-${VERSION}-source-release.zip >> apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
-shasum -a 512 apache-dubbo-incubating-${VERSION}-bin-release.zip >> apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
+shasum -b -a 512 apache-dubbo-incubating-${VERSION}-source-release.zip >> apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
+shasum -b -a 512 apache-dubbo-incubating-${VERSION}-bin-release.zip >> apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
 
 read -p "Need to push bin/source.zip to Apache svn repo ? (y/n, default is n) " NEED_PUSH_APACHE
 
@@ -170,4 +170,4 @@ if [ "$NEED_PUSH_APACHE" = "y" ]; then
 	echo "If this is your first release, make sure adding PUBLIC_KEY to KEYS manually."
 else
 	echo "Skip push bin/source.zip to Apache svn repo"
-fi
\ No newline at end of file
+fi