Files
android_development/tools/eclipse/buildConfig/buildUpdateSite.xml
The Android Open Source Project 52d4c30ca5 auto import from //depot/cupcake/@135843
2009-03-03 19:29:09 -08:00

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>