mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
37 lines
1,007 B
Bash
Executable file
37 lines
1,007 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Verify cx_Freeze bundled bleak for desktop RNode BLE support.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
BUILD_EXE="${1:-${ROOT}/build/exe}"
|
|
|
|
if [[ ! -d "${BUILD_EXE}" ]]; then
|
|
echo "cx_Freeze output not found at ${BUILD_EXE}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# If the target directory doesn't have a direct "lib" but has subdirectories (e.g. linux-x64),
|
|
# automatically traverse to the first subdirectory containing "lib".
|
|
if [[ ! -d "${BUILD_EXE}/lib" ]]; then
|
|
for sub in "${BUILD_EXE}"/*; do
|
|
if [[ -d "${sub}/lib" ]]; then
|
|
BUILD_EXE="${sub}"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
|
|
LIB_DIR="${BUILD_EXE}/lib"
|
|
if [[ -d "${LIB_DIR}/bleak" ]]; then
|
|
echo "bleak bundled at lib/bleak"
|
|
exit 0
|
|
fi
|
|
|
|
LIBRARY_ZIP="${LIB_DIR}/library.zip"
|
|
if [[ -f "${LIBRARY_ZIP}" ]] && unzip -l "${LIBRARY_ZIP}" | grep -q bleak; then
|
|
echo "bleak found in lib/library.zip"
|
|
exit 0
|
|
fi
|
|
|
|
echo "bleak missing from cx_Freeze output under ${BUILD_EXE}" >&2
|
|
exit 1
|