blob: 1ab7c99a0240d6e41d80f5c52ebe261aac2736b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|