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:13:49 UTC

svn commit: r1654571 - in /lucene/dev/branches/lucene_solr_5_0: ./ dev-tools/ dev-tools/scripts/buildAndPushRelease.py

Author: anshum
Date: Sat Jan 24 19:13:49 2015
New Revision: 1654571

URL: http://svn.apache.org/r1654571
Log:
SOLR-7028: Fix buildAndPushRelease.py to use the correct variables(merge from branch_5x)

Modified:
    lucene/dev/branches/lucene_solr_5_0/   (props changed)
    lucene/dev/branches/lucene_solr_5_0/dev-tools/   (props changed)
    lucene/dev/branches/lucene_solr_5_0/dev-tools/scripts/buildAndPushRelease.py

Modified: lucene/dev/branches/lucene_solr_5_0/dev-tools/scripts/buildAndPushRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_5_0/dev-tools/scripts/buildAndPushRelease.py?rev=1654571&r1=1654570&r2=1654571&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_5_0/dev-tools/scripts/buildAndPushRelease.py (original)
+++ lucene/dev/branches/lucene_solr_5_0/dev-tools/scripts/buildAndPushRelease.py Sat Jan 24 19:13:49 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