Skip to content

Commit cf5bbb3

Browse files
author
Ivan
committed
fix: ensure executable permission for the frozen runtime script
1 parent 9b91c9a commit cf5bbb3

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

meshchatx.rsm

0 Bytes
Binary file not shown.

scripts/ci/github-verify-frozen-runtime.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ if [[ -z "${EXE}" ]]; then
3232
exit 1
3333
fi
3434

35+
if [[ ! -x "${EXE}" ]]; then
36+
chmod +x "${EXE}"
37+
fi
38+
3539
if [[ ! -d "${BUILD_EXE}/lib/email" ]]; then
3640
echo "frozen runtime verify: lib/email missing (stdlib email must not live only in library.zip)" >&2
3741
exit 1

0 commit comments

Comments
 (0)