You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2015/04/01 17:22:26 UTC

svn commit: r1670671 - /lucene/dev/trunk/dev-tools/scripts/createPatch.py

Author: rmuir
Date: Wed Apr  1 15:22:26 2015
New Revision: 1670671

URL: http://svn.apache.org/r1670671
Log:
ignore eclipse IDE files in this script too

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

Modified: lucene/dev/trunk/dev-tools/scripts/createPatch.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/createPatch.py?rev=1670671&r1=1670670&r2=1670671&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/createPatch.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/createPatch.py Wed Apr  1 15:22:26 2015
@@ -90,7 +90,7 @@ def run_diff(from_dir, to_dir, skip_whit
     flags += 'bBw'
 
   args = ['diff', flags]
-  for ignore in ('.svn', '.git', 'build', '.caches', '.idea', 'idea-build'):
+  for ignore in ('.svn', '.git', 'build', '.caches', '.idea', 'idea-build', 'eclipse-build'):
     args.append('-x')
     args.append(ignore)
   args.append(from_dir)