mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
fix: ensure executable permission for the frozen runtime script
This commit is contained in:
parent
9b91c9ac80
commit
cf5bbb3c48
2 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue