mirror of https://github.com/apache/lucene.git
SOLR-6871: Fix precommit - accept /solr/downloads.html as valid link
This commit is contained in:
parent
a002aa5248
commit
d146354457
|
@ -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':
|
||||
|
|
Loading…
Reference in New Issue