mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
159f60223e
Signed-off-by: Li, Xun <xun.li@intel.com>
14 lines
862 B
XML
14 lines
862 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>
|