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:01 UTC

[incubator-openwhisk-release] branch bdelacretaz-patch-1 created (now 22d9cee)

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

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


      at 22d9cee  Output the source archive's SHA512..

This branch includes the following new commits:

     new 22d9cee  Output the source archive's SHA512..

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by bd...@apache.org.
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'"