You are viewing a plain text version of this content. The canonical link for it is here.
Posted to zeta-commits@incubator.apache.org by je...@apache.org on 2011/04/12 09:55:58 UTC

[zeta-commits] svn commit: r1091352 - /incubator/zetacomponents/website/build.xml

Author: jeromer
Date: Tue Apr 12 09:55:58 2011
New Revision: 1091352

URL: http://svn.apache.org/viewvc?rev=1091352&view=rev
Log:
- Fixed incorrect pattern in fileset

Modified:
    incubator/zetacomponents/website/build.xml

Modified: incubator/zetacomponents/website/build.xml
URL: http://svn.apache.org/viewvc/incubator/zetacomponents/website/build.xml?rev=1091352&r1=1091351&r2=1091352&view=diff
==============================================================================
--- incubator/zetacomponents/website/build.xml (original)
+++ incubator/zetacomponents/website/build.xml Tue Apr 12 09:55:58 2011
@@ -120,7 +120,7 @@
     <target name="tutorials" description="Copies tutorials for a given release to the website directory.">
         <copy todir="content/documentation/${build.name}">
             <fileset dir="${zeta.base}" casesensitive="yes">
-                <include name="**/docs/"/>
+                <include name="*/docs/"/>
             </fileset>
             <mapper type="regexp" from="([A-Z-a-z]*)/docs/(.*)" to="\1/\2"/>
         </copy>