Skip to content

Commit

Permalink
Source map support added a chunk to the package size (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose authored Mar 23, 2023
1 parent 39b8959 commit e1d32a4
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 \> "$((16000))" ; then
if expr $PACK_FILE_SIZE_KB \> "$((17000))" ; then
# the package size is too large, return -1
echo "Package size is too large!"
exit -1
Expand Down

0 comments on commit e1d32a4

Please sign in to comment.