check package size

master
adbenitez 2022-01-19 00:14:32 -05:00
parent 18f3be41da
commit feb072176a
1 changed files with 10 additions and 3 deletions

View File

@ -13,8 +13,15 @@ case "$1" in
;;
esac
rm $PACKAGE_NAME.xdc 2> /dev/null
zip -9 --recurse-paths $PACKAGE_NAME.xdc * --exclude README.md webxdc.js "*.sh" "*.xdc"
rm "$PACKAGE_NAME.xdc" 2> /dev/null
zip -9 --recurse-paths "$PACKAGE_NAME.xdc" * --exclude README.md webxdc.js "*.sh" "*.xdc"
echo "success, archive contents:"
unzip -l $PACKAGE_NAME.xdc
unzip -l "$PACKAGE_NAME.xdc"
# check package size
MAXSIZE=102400
size=$(wc -c < "$PACKAGE_NAME.xdc")
if [ $size -ge $MAXSIZE ]; then
echo "WARNING: package size exceeded the limit ($size > $MAXSIZE)"
fi