fix: ensure executable permission for the frozen runtime script

This commit is contained in:
Ivan 2026-07-25 16:14:58 -05:00
parent 9b91c9ac80
commit cf5bbb3c48
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View file

@ -32,6 +32,10 @@ if [[ -z "${EXE}" ]]; then
exit 1
fi
if [[ ! -x "${EXE}" ]]; then
chmod +x "${EXE}"
fi
if [[ ! -d "${BUILD_EXE}/lib/email" ]]; then
echo "frozen runtime verify: lib/email missing (stdlib email must not live only in library.zip)" >&2
exit 1