File size: 261 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
# Build Pinchtab and the embedded dashboard without starting the server.
set -euo pipefail
cd "$(dirname "$0")/.."
./scripts/build-dashboard.sh
echo "🔨 Building Go..."
go build -o pinchtab ./cmd/pinchtab
echo "✅ Build complete: ./pinchtab"
|