Author: jacopoc
Date: Mon Aug 14 02:41:17 2006
New Revision: 431316
URL:
http://svn.apache.org/viewvc?rev=431316&view=revLog:
The README file in the logs folder is now not removed when the clean-logs target is run.
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=431316&r1=431315&r2=431316&view=diff==============================================================================
--- incubator/ofbiz/trunk/framework/build.xml (original)
+++ incubator/ofbiz/trunk/framework/build.xml Mon Aug 14 02:41:17 2006
@@ -80,7 +80,9 @@
<target name="clean-logs">
<delete verbose="on">
- <fileset dir="logs" includes="*"/>
+ <fileset dir="logs" includes="*">
+ <exclude name="README"/>
+ </fileset>
</delete>
</target>