nicolaken 2003/11/06 06:36:22
Added: . build.xml
Log:
Add helper script.
This synchs the build dir of this module with
the publishing dir in ../incubator-site.
Note that the incubator-site CVS module must be present in the same
dir of the incubator CVS module.
Revision Changes Path
1.1 incubator/build.xml
Index: build.xml
===================================================================
<project name="apache-incubator-scripts" basedir=".." default="synchsite">
<target name="synchsite" description="Synch the build dir of this module
with the publishing dir in ../incubator-site">
<available file="incubator-site/CVS/Repository"
property="incubator-site-available"/>
<fail if="${incubator-site-available}">
The Apache "incubator-site" CVS module must be present in the same
dir of this "incubator" CVS module for this to.
</fail>
<sync todir="incubator-site/build/site" overwrite="false"
includeEmptyDirs="false" failonerror="true" verbose="true">
<fileset dir="incubator/build/site/"/>
</sync>
</target>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]