svn commit: r431561 - /incubator/ofbiz/trunk/framework/build.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r431561 - /incubator/ofbiz/trunk/framework/build.xml

jacopoc
Author: jacopoc
Date: Tue Aug 15 02:21:06 2006
New Revision: 431561

URL: http://svn.apache.org/viewvc?rev=431561&view=rev
Log:
Modified the clean-data target to reflect recent changes in the svn repository:
now the data folder is no more removed (this was causing problems since the data folder is now stored in svn with two files in it), it is instead emptied (all the files created during db setup are removed).

Modified:
    incubator/ofbiz/trunk/framework/build.xml

Modified: incubator/ofbiz/trunk/framework/build.xml
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/build.xml?rev=431561&r1=431560&r2=431561&view=diff
==============================================================================
--- incubator/ofbiz/trunk/framework/build.xml (original)
+++ incubator/ofbiz/trunk/framework/build.xml Tue Aug 15 02:21:06 2006
@@ -75,7 +75,12 @@
     </target>
 
     <target name="clean-data">
-        <delete verbose="on" dir="data"/>
+        <delete verbose="on" includeemptydirs="true">
+            <fileset dir="data" includes="**/*">
+                <exclude name="README"/>
+                <exclude name="derby.properties"/>
+            </fileset>
+        </delete>
     </target>
 
     <target name="clean-logs">