mirror of https://github.com/apache/lucene.git
don't recurse into dist when diffing sources
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1682831 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29972709bf
commit
0b5cefb394
|
@ -90,7 +90,7 @@ def run_diff(from_dir, to_dir, skip_whitespace):
|
|||
flags += 'bBw'
|
||||
|
||||
args = ['diff', flags]
|
||||
for ignore in ('.svn', '.git', 'build', '.caches', '.idea', 'idea-build', 'eclipse-build', '.settings'):
|
||||
for ignore in ('.svn', '.git', 'build', 'dist', '.caches', '.idea', 'idea-build', 'eclipse-build', '.settings'):
|
||||
args.append('-x')
|
||||
args.append(ignore)
|
||||
args.append(from_dir)
|
||||
|
|
Loading…
Reference in New Issue