You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2009/11/11 22:20:06 UTC

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

Author: doogie
Date: Wed Nov 11 21:20:02 2009
New Revision: 835074

URL: http://svn.apache.org/viewvc?rev=835074&view=rev
Log:
Handle runtime/tempfiles not existing; it's an empty folder, so some
revision control systems don't handle that case, and never create it.

Modified:
    ofbiz/trunk/framework/build.xml

Modified: ofbiz/trunk/framework/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/build.xml?rev=835074&r1=835073&r2=835074&view=diff
==============================================================================
--- ofbiz/trunk/framework/build.xml (original)
+++ ofbiz/trunk/framework/build.xml Wed Nov 11 21:20:02 2009
@@ -118,7 +118,7 @@
 
     <target name="clean-tempfiles">
         <delete verbose="on">
-            <fileset dir="../runtime/tempfiles" includes="**/*"/>
+            <fileset dir="../runtime" includes="tempfiles/**/*"/>
         </delete>
     </target>