You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ch...@apache.org on 2013/09/11 10:03:29 UTC

svn commit: r1521754 - /ofbiz/trunk/build.xml

Author: chrisg
Date: Wed Sep 11 08:03:28 2013
New Revision: 1521754

URL: http://svn.apache.org/r1521754
Log:
target 'clean-search-indexes' should not fail when 'runtime/indexes' directory is missing

Modified:
    ofbiz/trunk/build.xml

Modified: ofbiz/trunk/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/build.xml?rev=1521754&r1=1521753&r2=1521754&view=diff
==============================================================================
--- ofbiz/trunk/build.xml (original)
+++ ofbiz/trunk/build.xml Wed Sep 11 08:03:28 2013
@@ -167,7 +167,7 @@ under the License.
     <target name="clean-search-indexes"
             description="Remove search indexes (e.g. Lucene indexes) created under runtime/indexes">
         <delete includeemptydirs="true">
-            <fileset dir="./runtime/indexes" includes="**/*"/>
+            <fileset dir="./runtime/indexes" includes="**/*" erroronmissingdir="false" />
         </delete>
     </target>