fix: robust installers for all platforms (Windows, Linux, macOS)
Some checks failed
Release Binaries / release (push) Has been cancelled

Windows:
- Multiple Node.js installation methods (winget, chocolatey, direct MSI)
- Clear restart instructions when Node.js is newly installed
- Fallback to user profile directory if current dir not writable
- Comprehensive health checks and error reporting

Linux:
- Support for apt, dnf, yum, pacman, zypper, apk package managers
- NodeSource repository for newer Node.js versions
- nvm fallback installation method
- Graceful error handling with detailed troubleshooting

macOS:
- Xcode Command Line Tools detection and installation
- Homebrew auto-installation
- Apple Silicon (arm64) support with correct PATH setup
- Multiple Node.js fallbacks (brew, nvm, official pkg)

All platforms:
- Binary-Free Mode as default (no OpenCode binary required)
- Beautiful terminal output with progress indicators
- Detailed logging to install.log
- Post-install health checks
This commit is contained in:
Gemini AI
2025-12-28 00:43:08 +04:00
Unverified
parent 1e991d9ebd
commit 74001c7c3e
3 changed files with 881 additions and 542 deletions

View File

@@ -1,280 +1,413 @@
#!/bin/bash
# NomadArch Installer for macOS
# Version: 0.5.0 - Binary-Free Mode
# Version: 0.6.0 - Robust Edition
set -euo pipefail
# Exit on undefined variables
set -u
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
NC='\033[0m'
BOLD='\033[1m'
# Script directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
TARGET_DIR="$SCRIPT_DIR"
BIN_DIR="$TARGET_DIR/bin"
LOG_FILE="$TARGET_DIR/install.log"
ERRORS=0
WARNINGS=0
NEEDS_FALLBACK=0
BINARY_FREE_MODE=0
BINARY_FREE_MODE=1
# Logging function
log() {
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" >> "$LOG_FILE"
}
echo ""
echo "NomadArch Installer (macOS)"
echo "Version: 0.5.0 - Binary-Free Mode"
echo ""
print_header() {
echo ""
echo -e "${CYAN}╔═══════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}${NC} ${BOLD}NomadArch Installer for macOS${NC} ${CYAN}${NC}"
echo -e "${CYAN}${NC} Version: 0.6.0 - Robust Edition ${CYAN}${NC}"
echo -e "${CYAN}╚═══════════════════════════════════════════════════════════════╝${NC}"
echo ""
}
log "Installer started"
print_header
log "========== Installer started =========="
# ═══════════════════════════════════════════════════════════════
# STEP 1: OS and Architecture Detection
# ═══════════════════════════════════════════════════════════════
echo "[STEP 1/8] Detecting System..."
echo "[STEP 1/8] OS and Architecture Detection"
OS_TYPE=$(uname -s)
ARCH_TYPE=$(uname -m)
log "OS: $OS_TYPE"
log "Architecture: $ARCH_TYPE"
log "OS: $OS_TYPE, Arch: $ARCH_TYPE"
if [[ "$OS_TYPE" != "Darwin" ]]; then
echo -e "${RED}[ERROR]${NC} This installer is for macOS. Current OS: $OS_TYPE"
echo " Use Install-Linux.sh for Linux or Install-Windows.bat for Windows."
log "ERROR: Not macOS ($OS_TYPE)"
exit 1
fi
case "$ARCH_TYPE" in
arm64) ARCH="arm64" ;;
arm64) ARCH="arm64" ;;
x86_64) ARCH="x64" ;;
*)
echo -e "${RED}[ERROR]${NC} Unsupported architecture: $ARCH_TYPE"
log "ERROR: Unsupported arch $ARCH_TYPE"
exit 1
echo -e "${YELLOW}[WARN]${NC} Unusual architecture: $ARCH_TYPE (proceeding anyway)"
ARCH="$ARCH_TYPE"
((WARNINGS++)) || true
;;
esac
echo -e "${GREEN}[OK]${NC} OS: macOS"
echo -e "${GREEN}[OK]${NC} Architecture: $ARCH_TYPE"
# Get macOS version
MACOS_VERSION=$(sw_vers -productVersion 2>/dev/null || echo "unknown")
echo -e "${GREEN}[OK]${NC} OS: macOS $MACOS_VERSION"
echo -e "${GREEN}[OK]${NC} Architecture: $ARCH_TYPE ($ARCH)"
log "macOS $MACOS_VERSION, Arch: $ARCH_TYPE"
# ═══════════════════════════════════════════════════════════════
# STEP 2: Check Write Permissions
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 2/8] Checking write permissions"
mkdir -p "$BIN_DIR"
echo "[STEP 2/8] Checking Write Permissions..."
mkdir -p "$BIN_DIR" 2>/dev/null || true
if ! touch "$SCRIPT_DIR/.install-write-test" 2>/dev/null; then
echo -e "${YELLOW}[WARN]${NC} No write access to $SCRIPT_DIR"
TARGET_DIR="$HOME/.nomadarch-install"
TARGET_DIR="$HOME/.nomadarch"
BIN_DIR="$TARGET_DIR/bin"
LOG_FILE="$TARGET_DIR/install.log"
mkdir -p "$BIN_DIR"
if ! touch "$TARGET_DIR/.install-write-test" 2>/dev/null; then
echo -e "${RED}[ERROR]${NC} Cannot write to $TARGET_DIR"
log "ERROR: Write permission denied to fallback"
log "ERROR: Write permission denied"
exit 1
fi
rm -f "$TARGET_DIR/.install-write-test"
NEEDS_FALLBACK=1
echo -e "${GREEN}[OK]${NC} Using fallback: $TARGET_DIR"
else
rm -f "$SCRIPT_DIR/.install-write-test"
echo -e "${GREEN}[OK]${NC} Write access OK"
echo -e "${GREEN}[OK]${NC} Write access verified"
fi
log "Install target: $TARGET_DIR"
# ═══════════════════════════════════════════════════════════════
# STEP 3: Check Xcode Command Line Tools
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 3/8] Ensuring system dependencies"
echo "[STEP 3/8] Checking Xcode Command Line Tools..."
if ! command -v curl >/dev/null 2>&1; then
echo -e "${RED}[ERROR]${NC} curl is required but not available"
exit 1
if xcode-select -p >/dev/null 2>&1; then
echo -e "${GREEN}[OK]${NC} Xcode Command Line Tools installed"
else
echo -e "${BLUE}[INFO]${NC} Installing Xcode Command Line Tools..."
echo -e "${YELLOW}[NOTE]${NC} A dialog may appear - click 'Install' to proceed"
xcode-select --install 2>/dev/null || true
# Wait for installation
echo -e "${BLUE}[INFO]${NC} Waiting for Xcode tools installation..."
while ! xcode-select -p >/dev/null 2>&1; do
sleep 5
done
echo -e "${GREEN}[OK]${NC} Xcode Command Line Tools installed"
fi
if ! command -v brew >/dev/null 2>&1; then
echo -e "${YELLOW}[INFO]${NC} Homebrew not found. Installing..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# ═══════════════════════════════════════════════════════════════
# STEP 4: Check and Install Homebrew + Node.js
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 4/8] Checking Homebrew and Node.js..."
BREW_OK=0
NODE_OK=0
NPM_OK=0
# Check Homebrew
if command -v brew >/dev/null 2>&1; then
echo -e "${GREEN}[OK]${NC} Homebrew: $(brew --version | head -1)"
BREW_OK=1
else
echo -e "${BLUE}[INFO]${NC} Homebrew not found. Installing..."
log "Installing Homebrew"
if /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; then
# Add Homebrew to PATH for Apple Silicon
if [[ "$ARCH_TYPE" == "arm64" ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)" 2>/dev/null || true
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile 2>/dev/null || true
fi
# Verify
if command -v brew >/dev/null 2>&1; then
echo -e "${GREEN}[OK]${NC} Homebrew installed successfully"
BREW_OK=1
else
echo -e "${YELLOW}[WARN]${NC} Homebrew installed but not in PATH"
echo -e "${YELLOW}[INFO]${NC} You may need to restart your terminal"
((WARNINGS++)) || true
# Try to find it
if [[ -f "/opt/homebrew/bin/brew" ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
BREW_OK=1
elif [[ -f "/usr/local/bin/brew" ]]; then
eval "$(/usr/local/bin/brew shellenv)"
BREW_OK=1
fi
fi
else
echo -e "${RED}[ERROR]${NC} Failed to install Homebrew"
log "ERROR: Homebrew installation failed"
((WARNINGS++)) || true
fi
fi
MISSING_PKGS=()
command -v git >/dev/null 2>&1 || MISSING_PKGS+=("git")
command -v node >/dev/null 2>&1 || MISSING_PKGS+=("node")
if [[ ${#MISSING_PKGS[@]} -gt 0 ]]; then
echo -e "${BLUE}[INFO]${NC} Installing: ${MISSING_PKGS[*]}"
brew install "${MISSING_PKGS[@]}"
# Check Node.js
if command -v node >/dev/null 2>&1; then
NODE_VERSION=$(node --version 2>/dev/null || echo "unknown")
if [[ "$NODE_VERSION" != "unknown" ]]; then
NODE_MAJOR=$(echo "$NODE_VERSION" | sed 's/v//' | cut -d'.' -f1)
echo -e "${GREEN}[OK]${NC} Node.js: $NODE_VERSION"
NODE_OK=1
if [[ $NODE_MAJOR -lt 18 ]]; then
echo -e "${YELLOW}[WARN]${NC} Node.js 18+ recommended (current: $NODE_VERSION)"
((WARNINGS++)) || true
fi
fi
fi
if ! command -v node >/dev/null 2>&1; then
echo -e "${RED}[ERROR]${NC} Node.js install failed"
exit 1
# Install Node.js if needed
if [[ $NODE_OK -eq 0 ]]; then
echo -e "${BLUE}[INFO]${NC} Node.js not found. Installing..."
log "Installing Node.js"
INSTALL_SUCCESS=0
# Try Homebrew first
if [[ $BREW_OK -eq 1 ]]; then
if brew install node 2>&1; then
INSTALL_SUCCESS=1
fi
fi
# Try nvm as fallback
if [[ $INSTALL_SUCCESS -eq 0 ]]; then
echo -e "${BLUE}[INFO]${NC} Trying nvm installation..."
export NVM_DIR="$HOME/.nvm"
if curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh 2>/dev/null | bash >/dev/null 2>&1; then
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
if nvm install 20 2>&1; then
INSTALL_SUCCESS=1
fi
fi
fi
# Try official pkg installer as last resort
if [[ $INSTALL_SUCCESS -eq 0 ]]; then
echo -e "${BLUE}[INFO]${NC} Downloading Node.js installer..."
NODE_PKG="/tmp/node-installer.pkg"
if curl -fsSL "https://nodejs.org/dist/v20.10.0/node-v20.10.0.pkg" -o "$NODE_PKG" 2>/dev/null; then
echo -e "${BLUE}[INFO]${NC} Running Node.js installer (may require password)..."
sudo installer -pkg "$NODE_PKG" -target / && INSTALL_SUCCESS=1
rm -f "$NODE_PKG"
fi
fi
if [[ $INSTALL_SUCCESS -eq 1 ]]; then
# Verify installation
hash -r 2>/dev/null || true
if command -v node >/dev/null 2>&1; then
NODE_VERSION=$(node --version)
echo -e "${GREEN}[OK]${NC} Node.js installed: $NODE_VERSION"
NODE_OK=1
fi
fi
if [[ $NODE_OK -eq 0 ]]; then
echo -e "${RED}[ERROR]${NC} Could not install Node.js automatically"
echo ""
echo "Please install Node.js manually:"
echo " 1. Install via Homebrew: brew install node"
echo " 2. Or download from: https://nodejs.org/"
echo ""
log "ERROR: Node.js installation failed"
ERRORS=$((ERRORS+1))
fi
fi
NODE_VERSION=$(node --version)
NODE_MAJOR=$(echo "$NODE_VERSION" | cut -d'v' -f2 | cut -d'.' -f1)
echo -e "${GREEN}[OK]${NC} Node.js: $NODE_VERSION"
if [[ $NODE_MAJOR -lt 18 ]]; then
echo -e "${YELLOW}[WARN]${NC} Node.js 18+ is recommended"
((WARNINGS++))
# Check npm
if command -v npm >/dev/null 2>&1; then
NPM_VERSION=$(npm --version 2>/dev/null || echo "unknown")
if [[ "$NPM_VERSION" != "unknown" ]]; then
echo -e "${GREEN}[OK]${NC} npm: $NPM_VERSION"
NPM_OK=1
fi
fi
if ! command -v npm >/dev/null 2>&1; then
echo -e "${RED}[ERROR]${NC} npm is not available"
exit 1
if [[ $NPM_OK -eq 0 && $NODE_OK -eq 1 ]]; then
echo -e "${RED}[ERROR]${NC} npm not found (should come with Node.js)"
ERRORS=$((ERRORS+1))
fi
NPM_VERSION=$(npm --version)
echo -e "${GREEN}[OK]${NC} npm: $NPM_VERSION"
# ═══════════════════════════════════════════════════════════════
# STEP 5: Check Git (optional)
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 5/8] Checking Optional Dependencies..."
if command -v git >/dev/null 2>&1; then
echo -e "${GREEN}[OK]${NC} Git: $(git --version)"
else
echo -e "${YELLOW}[WARN]${NC} Git not found (optional)"
((WARNINGS++))
echo -e "${YELLOW}[INFO]${NC} Git not found (optional - installing via Homebrew)"
if [[ $BREW_OK -eq 1 ]]; then
brew install git 2>/dev/null || true
fi
fi
echo ""
echo "[STEP 4/8] Installing npm dependencies"
cd "$SCRIPT_DIR"
log "Running npm install"
if ! npm install; then
echo -e "${RED}[ERROR]${NC} npm install failed"
log "ERROR: npm install failed"
exit 1
fi
echo -e "${GREEN}[OK]${NC} Dependencies installed"
echo ""
echo "[STEP 5/8] OpenCode Binary (OPTIONAL - Binary-Free Mode Available)"
echo -e "${BLUE}[INFO]${NC} NomadArch now supports Binary-Free Mode!"
echo -e "${BLUE}[INFO]${NC} You can use the application without OpenCode binary."
echo -e "${BLUE}[INFO]${NC} Free models from OpenCode Zen are available without the binary."
mkdir -p "$BIN_DIR"
echo ""
read -p "Skip OpenCode binary download? (Y for Binary-Free Mode / N to download) [Y]: " SKIP_CHOICE
SKIP_CHOICE="${SKIP_CHOICE:-Y}"
if [[ "${SKIP_CHOICE^^}" == "Y" ]]; then
BINARY_FREE_MODE=1
echo -e "${GREEN}[INFO]${NC} Skipping OpenCode binary - using Binary-Free Mode"
log "Using Binary-Free Mode"
if command -v curl >/dev/null 2>&1; then
echo -e "${GREEN}[OK]${NC} curl: available"
else
# Pin to a specific known-working version
OPENCODE_PINNED_VERSION="0.1.44"
OPENCODE_VERSION="$OPENCODE_PINNED_VERSION"
echo -e "${RED}[ERROR]${NC} curl not found (required)"
ERRORS=$((ERRORS+1))
fi
LATEST_VERSION=$(curl -s --max-time 10 https://api.github.com/repos/sst/opencode/releases/latest 2>/dev/null | grep '"tag_name"' | cut -d'"' -f4 | sed 's/^v//')
if [[ -n "$LATEST_VERSION" ]]; then
echo -e "${BLUE}[INFO]${NC} Latest available: v${LATEST_VERSION}, using pinned: v${OPENCODE_VERSION}"
fi
# ═══════════════════════════════════════════════════════════════
# STEP 6: Install npm Dependencies
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 6/8] Installing Dependencies..."
OPENCODE_BASE="https://github.com/sst/opencode/releases/download/v${OPENCODE_VERSION}"
OPENCODE_URL="${OPENCODE_BASE}/opencode-darwin-${ARCH}"
CHECKSUM_URL="${OPENCODE_BASE}/checksums.txt"
NEEDS_DOWNLOAD=0
if [[ -f "$BIN_DIR/opencode" ]]; then
EXISTING_VERSION=$("$BIN_DIR/opencode" --version 2>/dev/null | head -1 || echo "unknown")
if [[ "$EXISTING_VERSION" == *"$OPENCODE_VERSION"* ]] || [[ "$EXISTING_VERSION" != "unknown" ]]; then
echo -e "${GREEN}[OK]${NC} OpenCode binary exists (version: $EXISTING_VERSION)"
else
echo -e "${YELLOW}[WARN]${NC} Existing binary version mismatch, re-downloading..."
NEEDS_DOWNLOAD=1
fi
if [[ $NODE_OK -eq 0 || $NPM_OK -eq 0 ]]; then
echo -e "${YELLOW}[SKIP]${NC} Skipping npm install (Node.js/npm not available)"
else
cd "$SCRIPT_DIR"
if [[ ! -f "package.json" ]]; then
echo -e "${RED}[ERROR]${NC} package.json not found in $SCRIPT_DIR"
echo "Make sure you extracted the full NomadArch package."
log "ERROR: package.json missing"
ERRORS=$((ERRORS+1))
else
NEEDS_DOWNLOAD=1
fi
if [[ $NEEDS_DOWNLOAD -eq 1 ]]; then
echo -e "${BLUE}[INFO]${NC} Downloading OpenCode v${OPENCODE_VERSION} for ${ARCH}..."
echo -e "${BLUE}[INFO]${NC} Running npm install (this may take a few minutes)..."
log "Running npm install"
DOWNLOAD_SUCCESS=0
for attempt in 1 2 3; do
if curl -L --fail --retry 3 -o "$BIN_DIR/opencode.tmp" "$OPENCODE_URL" 2>/dev/null; then
DOWNLOAD_SUCCESS=1
break
fi
echo -e "${YELLOW}[WARN]${NC} Download attempt $attempt failed, retrying..."
sleep 2
done
if [[ $DOWNLOAD_SUCCESS -eq 0 ]]; then
echo -e "${YELLOW}[WARN]${NC} Failed to download OpenCode binary - using Binary-Free Mode"
BINARY_FREE_MODE=1
if npm install --no-audit --no-fund 2>&1; then
echo -e "${GREEN}[OK]${NC} Dependencies installed"
else
if curl -L --fail -o "$BIN_DIR/checksums.txt" "$CHECKSUM_URL" 2>/dev/null; then
EXPECTED_HASH=$(grep "opencode-darwin-${ARCH}" "$BIN_DIR/checksums.txt" | awk '{print $1}')
ACTUAL_HASH=$(shasum -a 256 "$BIN_DIR/opencode.tmp" | awk '{print $1}')
if [[ "$ACTUAL_HASH" == "$EXPECTED_HASH" ]]; then
echo -e "${GREEN}[OK]${NC} Checksum verified"
else
echo -e "${YELLOW}[WARN]${NC} Checksum mismatch (may be OK for some versions)"
fi
echo -e "${YELLOW}[WARN]${NC} npm install had issues, trying with legacy peer deps..."
if npm install --legacy-peer-deps --no-audit --no-fund 2>&1; then
echo -e "${GREEN}[OK]${NC} Dependencies installed (with legacy peer deps)"
else
echo -e "${RED}[ERROR]${NC} npm install failed"
log "ERROR: npm install failed"
ERRORS=$((ERRORS+1))
fi
mv "$BIN_DIR/opencode.tmp" "$BIN_DIR/opencode"
chmod +x "$BIN_DIR/opencode"
echo -e "${GREEN}[OK]${NC} OpenCode binary installed"
fi
fi
fi
# ═══════════════════════════════════════════════════════════════
# STEP 7: Build UI Assets
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 6/8] Building UI assets"
if [[ -d "$SCRIPT_DIR/packages/ui/dist" ]]; then
echo "[STEP 7/8] Building UI Assets..."
if [[ $NODE_OK -eq 0 || $NPM_OK -eq 0 ]]; then
echo -e "${YELLOW}[SKIP]${NC} Skipping UI build (Node.js/npm not available)"
elif [[ -f "$SCRIPT_DIR/packages/ui/dist/index.html" ]]; then
echo -e "${GREEN}[OK]${NC} UI build already exists"
else
echo -e "${BLUE}[INFO]${NC} Building UI"
pushd "$SCRIPT_DIR/packages/ui" >/dev/null
npm run build
popd >/dev/null
echo -e "${GREEN}[OK]${NC} UI assets built"
echo -e "${BLUE}[INFO]${NC} Building UI (this may take 1-2 minutes)..."
cd "$SCRIPT_DIR/packages/ui"
if npm run build 2>&1; then
echo -e "${GREEN}[OK]${NC} UI assets built successfully"
else
echo -e "${RED}[ERROR]${NC} UI build failed"
log "ERROR: UI build failed"
ERRORS=$((ERRORS+1))
fi
cd "$SCRIPT_DIR"
fi
# ═══════════════════════════════════════════════════════════════
# STEP 8: Health Check and Summary
# ═══════════════════════════════════════════════════════════════
echo ""
echo "[STEP 7/8] Post-install health check"
echo "[STEP 8/8] Running Health Check..."
HEALTH_ERRORS=0
[[ -f "$SCRIPT_DIR/package.json" ]] || HEALTH_ERRORS=$((HEALTH_ERRORS+1))
[[ -d "$SCRIPT_DIR/packages/ui" ]] || HEALTH_ERRORS=$((HEALTH_ERRORS+1))
[[ -d "$SCRIPT_DIR/packages/server" ]] || HEALTH_ERRORS=$((HEALTH_ERRORS+1))
[[ -f "$SCRIPT_DIR/packages/ui/dist/index.html" ]] || HEALTH_ERRORS=$((HEALTH_ERRORS+1))
[[ -f "$SCRIPT_DIR/package.json" ]] || { echo -e "${RED}[FAIL]${NC} package.json missing"; HEALTH_ERRORS=$((HEALTH_ERRORS+1)); }
[[ -d "$SCRIPT_DIR/packages/ui" ]] || { echo -e "${RED}[FAIL]${NC} packages/ui missing"; HEALTH_ERRORS=$((HEALTH_ERRORS+1)); }
[[ -d "$SCRIPT_DIR/packages/server" ]] || { echo -e "${RED}[FAIL]${NC} packages/server missing"; HEALTH_ERRORS=$((HEALTH_ERRORS+1)); }
if [[ $NODE_OK -eq 1 && $NPM_OK -eq 1 ]]; then
[[ -d "$SCRIPT_DIR/node_modules" ]] || { echo -e "${RED}[FAIL]${NC} node_modules missing"; HEALTH_ERRORS=$((HEALTH_ERRORS+1)); }
[[ -f "$SCRIPT_DIR/packages/ui/dist/index.html" ]] || { echo -e "${YELLOW}[WARN]${NC} UI build missing"; ((WARNINGS++)) || true; }
fi
if [[ $HEALTH_ERRORS -eq 0 ]]; then
echo -e "${GREEN}[OK]${NC} Health checks passed"
else
echo -e "${RED}[ERROR]${NC} Health checks failed ($HEALTH_ERRORS)"
ERRORS=$((ERRORS+HEALTH_ERRORS))
fi
# Summary
echo ""
echo "[STEP 8/8] Installation Summary"
echo -e "${CYAN}╔═══════════════════════════════════════════════════════════════╗${NC}"
echo -e "${CYAN}${NC} ${BOLD}INSTALLATION SUMMARY${NC} ${CYAN}${NC}"
echo -e "${CYAN}╚═══════════════════════════════════════════════════════════════╝${NC}"
echo ""
echo " Install Dir: $TARGET_DIR"
echo " Architecture: $ARCH"
echo " Node.js: $NODE_VERSION"
echo " npm: $NPM_VERSION"
if [[ $BINARY_FREE_MODE -eq 1 ]]; then
echo " Mode: Binary-Free Mode (OpenCode Zen free models available)"
else
echo " Mode: Full Mode (OpenCode binary installed)"
fi
echo " Errors: $ERRORS"
echo " Warnings: $WARNINGS"
echo " Log File: $LOG_FILE"
echo " Install Directory: $TARGET_DIR"
echo " Architecture: $ARCH ($ARCH_TYPE)"
echo " macOS Version: $MACOS_VERSION"
[[ -n "${NODE_VERSION:-}" ]] && echo " Node.js: $NODE_VERSION"
[[ -n "${NPM_VERSION:-}" ]] && echo " npm: $NPM_VERSION"
echo " Mode: Binary-Free Mode"
echo " Errors: $ERRORS"
echo " Warnings: $WARNINGS"
echo " Log File: $LOG_FILE"
echo ""
if [[ $ERRORS -gt 0 ]]; then
echo -e "${RED}[RESULT]${NC} Installation completed with errors"
echo "Review $LOG_FILE for details."
else
echo -e "${GREEN}[RESULT]${NC} Installation completed successfully"
echo "Run: ./Launch-Unix.sh"
echo -e "${RED}╔═══════════════════════════════════════════════════════════════╗${NC}"
echo -e "${RED}${NC} ${BOLD}INSTALLATION COMPLETED WITH ERRORS${NC} ${RED}${NC}"
echo -e "${RED}╚═══════════════════════════════════════════════════════════════╝${NC}"
echo ""
if [[ $BINARY_FREE_MODE -eq 1 ]]; then
echo -e "${BLUE}NOTE:${NC} Running in Binary-Free Mode."
echo " Free models (GPT-5 Nano, Grok Code, GLM-4.7, etc.) are available."
echo " You can also authenticate with Qwen for additional models."
fi
echo "Review the errors above and check: $LOG_FILE"
echo ""
echo "Common fixes:"
echo " 1. Install Homebrew: /bin/bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\""
echo " 2. Install Node.js: brew install node"
echo " 3. Restart terminal after Homebrew installation"
echo ""
log "Installation FAILED with $ERRORS errors"
else
echo -e "${GREEN}╔═══════════════════════════════════════════════════════════════╗${NC}"
echo -e "${GREEN}${NC} ${BOLD}INSTALLATION SUCCESSFUL!${NC} ${GREEN}${NC}"
echo -e "${GREEN}╚═══════════════════════════════════════════════════════════════╝${NC}"
echo ""
echo "To start NomadArch, run:"
echo " ./Launch-Unix.sh"
echo ""
echo "Available Free Models:"
echo " - GPT-5 Nano (fast)"
echo " - Grok Code (coding)"
echo " - GLM-4.7 (general)"
echo " - Doubao (creative)"
echo ""
log "Installation SUCCESSFUL"
fi
exit $ERRORS