mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
14 lines
878 B
XML
14 lines
878 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}-${buildId}.zip" dest="${updateSiteRoot}"/>
|
|||
|
</target>
|
|||
|
</project>
|