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:31:49 UTC

svn commit: r1382436 - in /lucene/dev/branches/branch_4x: ./ build.xml

Author: uschindler
Date: Sun Sep  9 09:31:49 2012
New Revision: 1382436

URL: http://svn.apache.org/viewvc?rev=1382436&view=rev
Log:
Merged revision(s) 1382435 from lucene/dev/trunk:
Don't fail on non-existent m2 repo

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/build.xml

Modified: lucene/dev/branches/branch_4x/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/build.xml?rev=1382436&r1=1382435&r2=1382436&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/build.xml (original)
+++ lucene/dev/branches/branch_4x/build.xml Sun Sep  9 09:31:49 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>