Skip to content

Commit

Permalink
Bump pack size (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin authored Dec 20, 2024
1 parent 02ffc15 commit 2eee416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion continuous-delivery/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ mkdir $UNZIP
tar -xf aws-crt-$CURRENT_TAG.tgz -C $UNZIP
PACK_FILE_SIZE_KB=$(du -sk $UNZIP | awk '{print $1}')
echo "Current package size: ${PACK_FILE_SIZE_KB}"
if expr $PACK_FILE_SIZE_KB \> "$((26000))" ; then
if expr $PACK_FILE_SIZE_KB \> "$((27000))" ; then
# the package size is too large, return -1
echo "Package size is too large!"
exit -1
Expand Down

0 comments on commit 2eee416

Please sign in to comment.