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

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new d92f352  Use standard format when generating SHA signatures for 
release (#1667)
d92f352 is described below

commit d92f352d237cae7a1ebcea57cca75f690eaaaae0
Author: Matteo Merli <mme...@apache.org>
AuthorDate: Fri Apr 27 07:27:25 2018 -0700

    Use standard format when generating SHA signatures for release (#1667)
---
 src/sign-release.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sign-release.sh b/src/sign-release.sh
index 4153607..8b3d60d 100755
--- a/src/sign-release.sh
+++ b/src/sign-release.sh
@@ -25,9 +25,9 @@ do
    echo "Signing $FILE"
    gpg --armor --output $FILE.asc --detach-sig $FILE
 
-   # Checksum
-   gpg --print-md MD5 $FILE > $FILE.md5
+   # SHA-1 signature
+   shasum -a 1 $FILE > $FILE.sha1
 
    # SHA-512 signature
-   gpg --print-md SHA512 $FILE > $FILE.sha512
+   shasum -a 512 $FILE > $FILE.sha512
 done

-- 
To stop receiving notification emails like this one, please contact
mme...@apache.org.

Reply via email to