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 2007/10/22 15:51:28 UTC

svn commit: r587096 - /ofbiz/trunk/framework/build.xml

Author: jaz
Date: Mon Oct 22 06:51:25 2007
New Revision: 587096

URL: http://svn.apache.org/viewvc?rev=587096&view=rev
Log:
clean output no longer deletes the directory; instead now it cleans it out (since it is under version control)

Modified:
    ofbiz/trunk/framework/build.xml

Modified: ofbiz/trunk/framework/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/build.xml?rev=587096&r1=587095&r2=587096&view=diff
==============================================================================
--- ofbiz/trunk/framework/build.xml (original)
+++ ofbiz/trunk/framework/build.xml Mon Oct 22 06:51:25 2007
@@ -91,7 +91,7 @@
     </target>
 
     <target name="clean-logs">
-        <delete dir="../runtime/logs/test-results"/>
+        <delete verbose="on" dir="../runtime/logs/test-results"/>
         <delete verbose="on">
             <fileset dir="../runtime/logs" includes="*">
                 <exclude name="README"/>
@@ -100,7 +100,9 @@
     </target>
 
     <target name="clean-output">
-        <delete dir="../runtime/output"/>
+        <delete verbose="on">
+            <fileset dir="../runtime/output" includes="*"/>
+        </delete>
     </target>
 
     <target name="clean-xtra">