check package size
This commit is contained in:
parent
18f3be41da
commit
feb072176a
|
@ -13,8 +13,15 @@ case "$1" in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
rm $PACKAGE_NAME.xdc 2> /dev/null
|
rm "$PACKAGE_NAME.xdc" 2> /dev/null
|
||||||
zip -9 --recurse-paths $PACKAGE_NAME.xdc * --exclude README.md webxdc.js "*.sh" "*.xdc"
|
zip -9 --recurse-paths "$PACKAGE_NAME.xdc" * --exclude README.md webxdc.js "*.sh" "*.xdc"
|
||||||
|
|
||||||
echo "success, archive contents:"
|
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
|
||||||
|
|
Loading…
Reference in a new issue