Merge "Fix LeoUpdate script so that only one boot folder is present" into gingerbread

This commit is contained in:
Steve Kondik 2011-03-28 00:17:57 +04:00 committed by Gerrit Code Review
commit 56732df404

View File

@ -19,8 +19,9 @@ grep -vw boot.img temp > updater-script
rm -rf temp
echo Zipping Package
cd "$LOC"/temp
rm -rf boot.img
cp -a "$LOC"/boot boot
rm -rf "$LOC"/temp/boot.img
rm -rf "$LOC"/temp/boot
cp -a "$LOC"/boot "$LOC"/temp/boot
rm -rf "$LOC"/$TARGET_PRODUCT-ota-$TARGET_BUILD_VARIANT.$LOGNAME.zip
zip -9yr "$LOC"/$TARGET_PRODUCT-ota-$TARGET_BUILD_VARIANT.$LOGNAME.zip * > /dev/null
cd "$LOC"