We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e1f42 commit feb8014Copy full SHA for feb8014
.builder/actions/crt_size_check.py
@@ -74,4 +74,5 @@ def run(self, env):
74
75
print(f"Total NPM package file size: {total_size} bytes")
76
if total_size > max_size:
77
- raise Exception(f'NPM package exceeds size limit of {max_size} bytes.')
+ raise Exception(f'NPM package exceeds size limit of {
78
+ max_size} bytes.')
continuous-delivery/pack.sh
@@ -39,7 +39,7 @@ mkdir $UNZIP
39
tar -xf aws-crt-$CURRENT_TAG.tgz -C $UNZIP
40
PACK_FILE_SIZE_KB=$(du -sk $UNZIP | awk '{print $1}')
41
echo "Current package size: ${PACK_FILE_SIZE_KB}"
42
-if expr $PACK_FILE_SIZE_KB \> "$((27000))" ; then
+if expr $PACK_FILE_SIZE_KB \> "$((33000))" ; then
43
# the package size is too large, return -1
44
echo "Package size is too large!"
45
exit -1
0 commit comments