mirror of https://github.com/apache/lucene.git
ignore timehints.txt when diffing sources
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1506260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
30d15988b3
commit
0b8826aecf
|
@ -50,7 +50,7 @@ while True:
|
|||
elif l.endswith('\n'):
|
||||
l = l[:-1]
|
||||
if l.startswith('diff ') or l.startswith('Binary files '):
|
||||
keep = l.lower().find('/build/') == -1 and (l.lower().startswith('Only in') or ((l.lower().endswith('.java') or l.lower().endswith('.txt') or l.lower().endswith('.xml') or l.lower().endswith('.iml')) and l.find('/.svn/') == -1))
|
||||
keep = not l.endswith('timehints.txt') and l.lower().find('/build/') == -1 and (l.lower().startswith('Only in') or ((l.lower().endswith('.java') or l.lower().endswith('.txt') or l.lower().endswith('.xml') or l.lower().endswith('.iml')) and l.find('/.svn/') == -1))
|
||||
if keep:
|
||||
print
|
||||
print
|
||||
|
|
Loading…
Reference in New Issue