You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/07/16 22:46:55 UTC

svn commit: r677420 - /maven/components/branches/maven-2.0.x/build.xml

Author: bentmann
Date: Wed Jul 16 13:46:55 2008
New Revision: 677420

URL: http://svn.apache.org/viewvc?rev=677420&view=rev
Log:
o Fixed bootstrapping to properly delete old distribution

Modified:
    maven/components/branches/maven-2.0.x/build.xml

Modified: maven/components/branches/maven-2.0.x/build.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/build.xml?rev=677420&r1=677419&r2=677420&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/build.xml (original)
+++ maven/components/branches/maven-2.0.x/build.xml Wed Jul 16 13:46:55 2008
@@ -167,12 +167,12 @@
     <echo>Extracting assembly to ${maven.home.dirname} ...</echo>
     <!-- Deleting the contents inside maven.home allow one to use symlinks for maven.home and still have this work. -->          
     <mkdir dir="${maven.home}"/>
-    <delete>
+    <delete includeemptydirs="true">
       <fileset dir="${maven.home}">
-        <include name="bin"/>
-        <include name="boot"/>
-        <include name="conf"/>
-        <include name="lib"/>
+        <include name="bin/**"/>
+        <include name="boot/**"/>
+        <include name="conf/**"/>
+        <include name="lib/**"/>
         <include name="*.txt"/>
       </fileset>
     </delete>