You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by mi...@apache.org on 2005/04/06 11:21:37 UTC

svn commit: r160271 - lenya/trunk/src/targets/webapp-build.xml

Author: michi
Date: Wed Apr  6 02:21:36 2005
New Revision: 160271

URL: http://svn.apache.org/viewcvs?view=rev&rev=160271
Log:
create build dir by default such that build process does not fail unnecessarily

Modified:
    lenya/trunk/src/targets/webapp-build.xml

Modified: lenya/trunk/src/targets/webapp-build.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/targets/webapp-build.xml?view=diff&r1=160270&r2=160271
==============================================================================
--- lenya/trunk/src/targets/webapp-build.xml (original)
+++ lenya/trunk/src/targets/webapp-build.xml Wed Apr  6 02:21:36 2005
@@ -196,6 +196,8 @@
 
   <!-- Cleans the build directory, with the exception of target.reset.excludes -->
   <target name="clean" depends="init" description="Cleans the build directories">
+    <mkdir dir="${build.root}"/> <!-- Create dir such that build process does not fail if build dir does not exist -->
+    <!--<echo>Delete directory ${build.root}</echo>-->
     <delete includeEmptyDirs="true">
       <fileset dir="${build.root}" excludes="${target.reset.excludes}" />
     </delete>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org