You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2015/04/07 05:48:16 UTC

svn commit: r1671738 - in /lucene/dev/branches/branch_5x: ./ dev-tools/ dev-tools/scripts/smokeTestRelease.py

Author: sarowe
Date: Tue Apr  7 03:48:15 2015
New Revision: 1671738

URL: http://svn.apache.org/r1671738
Log:
LUCENE-6403: make maven artifact crawl seed URLs end with slashes (merge trunk r1671737)

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/dev-tools/   (props changed)
    lucene/dev/branches/branch_5x/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/branches/branch_5x/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/dev-tools/scripts/smokeTestRelease.py?rev=1671738&r1=1671737&r2=1671738&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/branches/branch_5x/dev-tools/scripts/smokeTestRelease.py Tue Apr  7 03:48:15 2015
@@ -1017,7 +1017,7 @@ def checkMaven(baseURL, tmpDir, svnRevis
   print('    download artifacts')
   artifacts = {'lucene': [], 'solr': []}
   for project in ('lucene', 'solr'):
-    artifactsURL = '%s/%s/maven/org/apache/%s' % (baseURL, project, project)
+    artifactsURL = '%s/%s/maven/org/apache/%s/' % (baseURL, project, project)
     targetDir = '%s/maven/org/apache/%s' % (tmpDir, project)
     if not os.path.exists(targetDir):
       os.makedirs(targetDir)