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:23:06 UTC

svn commit: r1670672 - in /lucene/dev/branches/branch_5x: ./ dev-tools/ dev-tools/scripts/createPatch.py

Author: rmuir
Date: Wed Apr  1 15:23:05 2015
New Revision: 1670672

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

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/dev-tools/   (props changed)
    lucene/dev/branches/branch_5x/dev-tools/scripts/createPatch.py

Modified: lucene/dev/branches/branch_5x/dev-tools/scripts/createPatch.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/dev-tools/scripts/createPatch.py?rev=1670672&r1=1670671&r2=1670672&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/dev-tools/scripts/createPatch.py (original)
+++ lucene/dev/branches/branch_5x/dev-tools/scripts/createPatch.py Wed Apr  1 15:23:05 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)