'Generic Commit'
Some checks failed
Build-Test-Publish / build (push) Failing after 22s

This commit is contained in:
Your Name
2025-06-22 10:22:48 +12:00
parent 861995069b
commit 33387bdc35

View File

@ -46,15 +46,8 @@ docker build \
[ -f "${OUTPUT}/${PROJECT}" ] || die "Build failed." [ -f "${OUTPUT}/${PROJECT}" ] || die "Build failed."
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
heading "Downloading SOS" SOS="${SCRIPT_DIR}/../sos/sos"
# download the sos binary [ -f "${SOS}" ] || die "Failed to find sos"
TEMP_DIR="${OUTPUT}/temp"
SOS="${TEMP_DIR}/sos"
mkdir -p "${TEMP_DIR}"
trap 'rm -rf "${TEMP_DIR}"' EXIT
curl -L -o "${SOS}" "https://getbin.xyz/sos"
[ -f "${SOS}" ] || die "Failed to download sos"
chmod +x "${SOS}"
#-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------
heading "Uploading ${PROJECT} to getbin.xyz" heading "Uploading ${PROJECT} to getbin.xyz"