Author: doogie
Date: Wed Jul 1 03:58:38 2009
New Revision: 790033
URL:
http://svn.apache.org/viewvc?rev=790033&view=revLog:
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>