You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by bd...@apache.org on 2019/04/08 13:37:02 UTC

[incubator-openwhisk-release] 01/01: Output the source archive's SHA512..

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

bdelacretaz pushed a commit to branch bdelacretaz-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-release.git

commit 22d9ceed7a48fd25fa4d107adfdd00c722fffd9f
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Apr 8 15:36:57 2019 +0200

    Output the source archive's SHA512..
    
    so that [VOTE] mail archives point to the exact archive that was validated
---
 tools/rcverify.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index 5c36504..0fddddc 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -114,6 +114,7 @@ EXPECTED=$(cat "$DIR/$TGZ.sha512")
 CMD="cd $DIR && gpg --print-md SHA512 '$TGZ'"
 SHA=$(eval $CMD)
 validate "$EXPECTED" "$SHA" "$CMD"
+echo "SHA512: $(tput setaf 6)$SHA$(tput sgr0)"
 
 printf "verifying asc..."  
 CMD="gpg --verify '$DIR/$TGZ.asc' '$DIR/$TGZ'"