You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2021/05/19 11:50:37 UTC

[sling-tooling-release] 01/01: SLING-10354 - Update check_staged_release.sh to verify SHA-512 signature for the source release

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

rombert pushed a commit to branch SLING-10354
in repository https://gitbox.apache.org/repos/asf/sling-tooling-release.git

commit 3da9de1b637ea492836466ba6dae2853c14bca58
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Wed May 19 13:48:45 2021 +0200

    SLING-10354 - Update check_staged_release.sh to verify SHA-512 signature for the source release
---
 check_staged_release.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/check_staged_release.sh b/check_staged_release.sh
index ca2c4d8..4590013 100755
--- a/check_staged_release.sh
+++ b/check_staged_release.sh
@@ -31,7 +31,7 @@ echo "##########################################################################
 echo "                          CHECK SIGNATURES AND DIGESTS                          "
 echo "################################################################################"
 
-for i in `find "${DOWNLOAD}/${STAGING}" -type f | grep -v '\.\(asc\|sha1\|md5\)$'`
+for i in `find "${DOWNLOAD}/${STAGING}" -type f | grep -v '\.\(asc\|sha1\|md5\|sha512\)$'`
 do
  f=`echo $i | sed 's/\.asc$//'`
  echo "$f"
@@ -40,7 +40,7 @@ do
  if [ ! -f "$f.asc" ]; then CHKSUM="----"; fi
  echo "gpg:  ${CHKSUM}"
 
- for tp in md5 sha1
+ for tp in md5 sha1 sha512
  do
    if [ ! -f "$f.$tp" ]
    then