14 lines
897 B
XML
14 lines
897 B
XML
<project name="update site">
|
|
<!-- ========================================================================= -->
|
|
<!-- Extracts feature zip for update site -->
|
|
<!-- expected properties: -->
|
|
<!-- id - feature id to extract -->
|
|
<!-- buildDirectory - base directgory where build takes place -->
|
|
<!-- buildLabel - build id label -->
|
|
<!-- updateSiteRoot - where to extract feature zip -->
|
|
<!-- ========================================================================= -->
|
|
<target name="extractFeature">
|
|
<unzip src="${buildDirectory}/${buildLabel}/${id}-${buildLabel}.zip" dest="${updateSiteRoot}"/>
|
|
</target>
|
|
</project>
|