File size: 997 Bytes
f25362a 20fe10e f25362a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/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=usb
read -r -p "Press Enter to close..." _
|