jackailocal / BUILD-SSD-MAC.command
jackboy70's picture
Deploy: lite-bundle guard on all build launchers
20fe10e
Raw
History Blame Contribute Delete
997 Bytes
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
if [ ! -x "./bin/jackailocald" ]; then
cat <<'LITE_EOF'
============================================================
JackAILocal - lite inspection bundle
============================================================
This package was exported from the hosted Hugging Face Space.
It ships the builder scripts, WebUI, config and the AI-reviewed
build manifest - but NOT the native runtime binaries or models,
which a hosted Space cannot ship.
You cannot build a target from this lite bundle. To build and
run JackAILocal, get the full package with binaries from the
project repository and run this script from there.
See README-FIRST.txt and manifest/build-manifest.json for details.
============================================================
LITE_EOF
read -r -p "Press Enter to close..." _
exit 0
fi
chmod +x ./macos/JackAILocal-USB-Builder.sh
./macos/JackAILocal-USB-Builder.sh --mode=ssd
read -r -p "Press Enter to close..." _