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

Posted by ChrisG-2 on
URL: http://ofbiz.116.s1.nabble.com/svn-commit-r1521754-ofbiz-trunk-build-xml-tp4643838.html

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>