Author: jacopoc
Date: Tue Aug 15 02:21:06 2006
New Revision: 431561
URL:
http://svn.apache.org/viewvc?rev=431561&view=revLog:
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">