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/05 19:20:19 UTC

[openwhisk-release] branch master updated: Prepend ./ to rcverify for convenience. (#348)

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 ea1c7b5  Prepend ./ to rcverify for convenience. (#348)
ea1c7b5 is described below

commit ea1c7b50e0da6628d8fde68cd816ceccfd7e0df4
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Mon Oct 5 15:20:08 2020 -0400

    Prepend ./ to rcverify for convenience. (#348)
---
 tools/gen-release-vote.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/gen-release-vote.py b/tools/gen-release-vote.py
index 4b828cb..c95fd25 100755
--- a/tools/gen-release-vote.py
+++ b/tools/gen-release-vote.py
@@ -94,7 +94,7 @@ def gitHashes(components):
     return '\n'.join(list(s))
 
 def rcverify(components, version):
-    s = map(lambda r: "rcverify.sh %s '%s' %s %s" % (r.id, r.name, version.v, version.rc), components)
+    s = map(lambda r: "./rcverify.sh %s '%s' %s %s" % (r.id, r.name, version.v, version.rc), components)
     return '\n'.join(list(s))
 
 def releaseVersion(config):