You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2006/09/09 03:14:34 UTC

svn commit: r441720 - /forrest/trunk/tools/forrestbot/core/deploy.xml

Author: crossley
Date: Fri Sep  8 18:14:34 2006
New Revision: 441720

URL: http://svn.apache.org/viewvc?view=rev&rev=441720
Log:
Use Ant's fileset/modified to deploy only the changed files with deploy.local

Modified:
    forrest/trunk/tools/forrestbot/core/deploy.xml

Modified: forrest/trunk/tools/forrestbot/core/deploy.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/tools/forrestbot/core/deploy.xml?view=diff&rev=441720&r1=441719&r2=441720
==============================================================================
--- forrest/trunk/tools/forrestbot/core/deploy.xml (original)
+++ forrest/trunk/tools/forrestbot/core/deploy.xml Fri Sep  8 18:14:34 2006
@@ -26,7 +26,9 @@
     <mkdir dir="${deploy.local.dir}"/>
     <echo>Deploying from ${build.site-dir} to ${deploy.local.dir}</echo>
     <copy todir="${deploy.local.dir}">
-      <fileset dir="${build.site-dir}"/>
+      <fileset dir="${build.site-dir}">
+        <modified/>
+      </fileset>
     </copy>
     
     <!-- set a property to be used in the notify target -->