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 2012/11/10 15:08:46 UTC

svn commit: r1407815 - /lucene/dev/trunk/solr/example/build.xml

Author: rmuir
Date: Sat Nov 10 14:08:45 2012
New Revision: 1407815

URL: http://svn.apache.org/viewvc?rev=1407815&view=rev
Log:
don't fail if we cant delete: for some reason windows is hanging on to open file handles to these jars?

Modified:
    lucene/dev/trunk/solr/example/build.xml

Modified: lucene/dev/trunk/solr/example/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/example/build.xml?rev=1407815&r1=1407814&r2=1407815&view=diff
==============================================================================
--- lucene/dev/trunk/solr/example/build.xml (original)
+++ lucene/dev/trunk/solr/example/build.xml Sat Nov 10 14:08:45 2012
@@ -43,7 +43,7 @@
 
        there is probably a cleaner way: but this ensure we have no garbage if jetty is upgraded -->
   <target name="sync-hack">
-    <delete>
+    <delete failonerror="false">
       <fileset dir="lib" includes="*.jar"/>
     </delete>
   </target>