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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

doogie-3
Author: doogie
Date: Wed Jul  1 03:58:38 2009
New Revision: 790033

URL: http://svn.apache.org/viewvc?rev=790033&view=rev
Log:
Handle runtime/output not existing, which happens on a fresh git
checkout; clean fails in such cases.

Modified:
    ofbiz/trunk/framework/build.xml

Modified: ofbiz/trunk/framework/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/build.xml?rev=790033&r1=790032&r2=790033&view=diff
==============================================================================
--- ofbiz/trunk/framework/build.xml (original)
+++ ofbiz/trunk/framework/build.xml Wed Jul  1 03:58:38 2009
@@ -102,7 +102,7 @@
 
     <target name="clean-output">
         <delete verbose="on">
-            <fileset dir="../runtime/output" includes="*"/>
+            <fileset dir="." includes="../runtime/output/*"/>
         </delete>
     </target>