mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
18 lines
281 B
Bash
18 lines
281 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "${DEBUG}" = 1 ]; then
|
||
|
set -x
|
||
|
fi
|
||
|
|
||
|
MAX_BINARY_SIZE=61000000
|
||
|
SIZE=$(ls -l dist/artifacts/k3s | awk -F ' ' '{print $5}')
|
||
|
|
||
|
if [ ${SIZE} -gt ${MAX_BINARY_SIZE} ]; then
|
||
|
echo "k3s binary exceeds acceptable size of "${MAX_BINARY_SIZE}
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exit 0
|