You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2006/08/14 11:41:18 UTC

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

Author: jacopoc
Date: Mon Aug 14 02:41:17 2006
New Revision: 431316

URL: http://svn.apache.org/viewvc?rev=431316&view=rev
Log:
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>