Merge pull request #155 from outis1one/claude/bootstrap-script-404-d8dc7h

bootstrap.sh: replace BASH_SOURCE with $0 to fix pipe execution
This commit is contained in:
Outis
2026-06-28 08:07:33 -04:00
committed by GitHub
+1 -3
View File
@@ -48,9 +48,7 @@ echo ""
# ── Option 3: already running from inside the repo ───────────────────────────
# If setup.sh is sitting next to this script, we have everything we need.
set +u
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]:-}")" 2>/dev/null && pwd || echo "")"
set -u
SCRIPT_DIR="$(cd "$(dirname "$0")" 2>/dev/null && pwd || echo "")"
if [ -f "${SCRIPT_DIR}/setup.sh" ]; then
echo " Running from local copy at $SCRIPT_DIR"
echo " (No git or internet needed)"