You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by dg...@apache.org on 2019/05/01 19:09:13 UTC

[incubator-openwhisk-release] branch master updated: Emit download URL. (#273)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5a72e30  Emit download URL. (#273)
5a72e30 is described below

commit 5a72e30d185638a950c81b04d3caf06aada660f7
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Wed May 1 15:09:09 2019 -0400

    Emit download URL. (#273)
---
 tools/rcverify.sh | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index a644f60..a0bd0cc 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -67,14 +67,17 @@ echo working in the following directory:
 echo "$(tput setaf 6)$DIR$(tput sgr0)"
 
 if [ $DL -ne 0 ]; then
+  SRC=$DIST/apache-openwhisk-$V-$RC
+  echo fetching tarball and signatures from $SRC
+
   echo fetching $TGZ
-  curl $DIST/apache-openwhisk-$V-$RC/$TGZ -s -o "$DIR/$TGZ"
+  curl $SRC/$TGZ -s -o "$DIR/$TGZ"
 
   echo fetching $TGZ.asc
-  curl $DIST/apache-openwhisk-$V-$RC/$TGZ.asc -s -o "$DIR/$TGZ.asc"
+  curl $SRC/$TGZ.asc -s -o "$DIR/$TGZ.asc"
 
   echo fetching $TGZ.sha512
-  curl $DIST/apache-openwhisk-$V-$RC/$TGZ.sha512 -s -o "$DIR/$TGZ.sha512"
+  curl $SRC/$TGZ.sha512 -s -o "$DIR/$TGZ.sha512"
 fi
 
 if [ $IMPORT -ne 0 ]; then