This commit is contained in:
Anuj Garg 2024-05-17 22:41:04 -07:00 committed by GitHub
commit d33e95dbb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
set -e
. ./scripts/version.sh
GO=${GO-go}
ARCH=${ARCH:-$("${GO}" env GOARCH)}
@ -22,7 +24,7 @@ elif [ ${ARCH} = s390x ]; then
BIN_SUFFIX="-s390x"
fi
CMD_NAME="dist/artifacts/k3s${BIN_SUFFIX}"
CMD_NAME="dist/artifacts/k3s${BIN_SUFFIX}${BINARY_POSTFIX}"
SIZE=$(stat -c '%s' ${CMD_NAME})
if [ -n "${DEBUG}" ]; then