Changeset 15078 for greenstone3/trunk/build.xml
- Timestamp:
- 2008-03-10T16:08:40+13:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
greenstone3/trunk/build.xml
r15050 r15078 1438 1438 <move file="${basedir}/web/WEB-INF/web.xml" tofile="${basedir}/web/WEB-INF/web.xml.greenstone3backup"/> 1439 1439 <antcall target="flax-copy-files" /> 1440 1441 <property name="coll.dir" value="${basedir}/web/sites/flax/collect"/> 1442 <unzip dest="${coll.dir}"> 1443 <fileset dir="${coll.dir}"> 1444 <include name="*.zip"/> 1445 </fileset> 1446 </unzip> 1447 <delete> 1448 <fileset dir="${coll.dir}" includes="*.zip"/> 1449 </delete> 1450 </target> 1440 <antcall target="unzip-flax-collections" /> 1441 </target> 1451 1442 1452 1443 <target name="update-flax" description="update flax from repository"> … … 1458 1449 <update dir="${basedir}/web/interfaces/flax"/> 1459 1450 <update dir="${basedir}/web/sites/flax"/> 1460 <svncall target="flax-copy-files" />1461 1451 </svn> 1452 <antcall target="flax-copy-files" /> 1453 <antcall target="unzip-flax-collections" /> 1462 1454 </target> 1463 1455 1456 <target name="unzip-flax-collections" > 1457 <property name="coll.dir" value="${basedir}/web/sites/flax/collect"/> 1458 <unzip dest="${coll.dir}"> 1459 <fileset dir="${coll.dir}"> 1460 <include name="*.zip"/> 1461 </fileset> 1462 </unzip> 1463 <delete> 1464 <fileset dir="${coll.dir}" includes="*.zip"/> 1465 </delete> 1466 </target> 1467 1464 1468 <target name="flax-copy-files" description="copy some flax files into the appropriate greenstone3 directories"> 1465 1469 <echo>copying flax files ...</echo>
Note:
See TracChangeset
for help on using the changeset viewer.