You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2015/01/24 20:12:01 UTC

svn commit: r1654569 - /lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py

Author: anshum
Date: Sat Jan 24 19:12:00 2015
New Revision: 1654569

URL: http://svn.apache.org/r1654569
Log:
SOLR-7028: Fix buildAndPushRelease.py to use the correct variables

Modified:
    lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py

Modified: lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py?rev=1654569&r1=1654568&r2=1654569&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/buildAndPushRelease.py Sat Jan 24 19:12:00 2015
@@ -280,9 +280,9 @@ def main():
     rev = open('rev.txt', encoding='UTF-8').read()
 
   if c.push_remote:
-    url = push(version, root, rev, rcNum, username)
+    url = push(c.version, c.root, rev, c.rc_num, c.push_remote)
   elif c.push_local:
-    url = pushLocal(version, root, rev, c.rc_num, c.push_local)
+    url = pushLocal(c.version, c.root, rev, c.rc_num, c.push_local)
   else:
     url = None