You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/07/17 15:08:28 UTC

svn commit: r1362478 - /lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py

Author: rmuir
Date: Tue Jul 17 13:08:28 2012
New Revision: 1362478

URL: http://svn.apache.org/viewvc?rev=1362478&view=rev
Log:
fix ant -lib invocation to actually pass where the rat.jar goes when downloaded (only affects 3.6, this rat-downloading is done via ivy in 4.x)

Modified:
    lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py?rev=1362478&r1=1362477&r2=1362478&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/lucene_solr_3_6/dev-tools/scripts/smokeTestRelease.py Tue Jul 17 13:08:28 2012
@@ -440,7 +440,7 @@ def verifyUnpacked(project, artifact, un
     run('%s; ant validate' % javaExe('1.7'), '%s/validate.log' % unpackPath)
 
     print '    run "ant rat-sources"'
-    run('%s; ant -lib %s/apache-rat-0.8.jar rat-sources' % (javaExe('1.7'), tmpDir), '%s/rat-sources.log' % unpackPath)
+    run('%s; ant -lib %s/apache-rat-0.8.jar/apache-rat-0.8/apache-rat-0.8.jar rat-sources' % (javaExe('1.7'), tmpDir), '%s/rat-sources.log' % unpackPath)
     
     if project == 'lucene':
       print '    run tests w/ Java 5...'