blob: 1ab7c99a0240d6e41d80f5c52ebe261aac2736b8 [file] [log] [blame]
<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>