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:46:42 UTC

svn commit: r1671737 - /lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py

Author: sarowe
Date: Tue Apr  7 03:46:42 2015
New Revision: 1671737

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

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

Modified: lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py?rev=1671737&r1=1671736&r2=1671737&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py Tue Apr  7 03:46:42 2015
@@ -983,7 +983,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)