You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2020/10/31 05:41:02 UTC

[openwhisk-release] branch master updated: Download the LISENCE file unconditionally (#355)

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

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new fd3f7b2  Download the LISENCE file unconditionally (#355)
fd3f7b2 is described below

commit fd3f7b2e477abd54a72fb58567bea0ae281ad721
Author: Dominic Kim <st...@apache.org>
AuthorDate: Sat Oct 31 14:40:54 2020 +0900

    Download the LISENCE file unconditionally (#355)
---
 tools/rcverify.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index adca574..1037d7f 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -207,6 +207,10 @@ else
   cp "$LOCAL_DIR/$TGZ" "$DIR/$TGZ" || exit 1
   cp "$LOCAL_DIR/$TGZ.asc" "$DIR/$TGZ.asc" || exit 1
   cp "$LOCAL_DIR/$TGZ.sha512" "$DIR/$TGZ.sha512" || exit 1
+
+  printf "fetching apache license..."
+  RESULT=$($CURL http://www.apache.org/licenses/LICENSE-2.0 -o "$DIR/LICENSE-2.0" 2>&1)
+  statusok $? "$RESULT"
 fi
 
 if [ $IMPORT -ne 0 ]; then