SOLR-6871: Fix precommit - accept /solr/downloads.html as valid link

This commit is contained in:
Jan Høydahl 2016-09-22 10:52:01 +02:00
parent a002aa5248
commit d146354457
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,9 @@ def checkAll(dirName):
elif link.find('lucene.apache.org/solr/quickstart.html') != -1:
# OK
pass
elif link.find('lucene.apache.org/solr/downloads.html') != -1:
# OK
pass
elif (link.find('svn.apache.org') != -1
or link.find('lucene.apache.org') != -1)\
and os.path.basename(fullPath) != 'Changes.html':