You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2012/09/09 11:30:52 UTC

svn commit: r1382435 - /lucene/dev/trunk/build.xml

Author: uschindler
Date: Sun Sep  9 09:30:52 2012
New Revision: 1382435

URL: http://svn.apache.org/viewvc?rev=1382435&view=rev
Log:
Don't fail on non-existent m2 repo

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1382435&r1=1382434&r2=1382435&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Sun Sep  9 09:30:52 2012
@@ -164,7 +164,7 @@
   <target name="remove-maven-artifacts" description="Removes all Lucene/Solr Maven artifacts from the local repository">
     <echo message="Removing all Lucene/Solr Maven artifacts from '${user.home}/.m2/repository'..."/>
     <delete includeemptydirs="true">
-      <fileset dir="${user.home}/.m2/repository">
+      <fileset dir="${user.home}/.m2/repository" erroronmissingdir="false">
         <include name="org/apache/lucene/**"/>
         <include name="org/apache/solr/**"/>
       </fileset>