From e1d32a4fe359a14a3625c814927d66ef7fed4874 Mon Sep 17 00:00:00 2001 From: Bret Ambrose Date: Wed, 22 Mar 2023 17:42:33 -0700 Subject: [PATCH] Source map support added a chunk to the package size (#437) --- continuous-delivery/pack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuous-delivery/pack.sh b/continuous-delivery/pack.sh index f70fafd0d..387c78e91 100644 --- a/continuous-delivery/pack.sh +++ b/continuous-delivery/pack.sh @@ -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