Install Agent Stage Stuck

Nucleic-Session: CC59896F-5A33-43D8-93E0-AD8C2B16E60E
Co-authored-by: Nucleic <[email protected]>
This commit is contained in:
2026-07-08 04:25:39 -07:00
co-authored by nucleic
parent 9ce7e8aa24
commit 6451770629
+10 -2
View File
@@ -190,8 +190,16 @@ eval "$("$BREW" shellenv)"
echo " installing packages via brew …"
# node → node/npm/npx; python → python3/pip3; git + common CLI dev tools. `brew install` is idempotent.
"$BREW" install node python git jq ripgrep coreutils || true
# Tooling for the FULL Xcode path (documented below): `xcodes` + `aria2` for fast, resumable downloads.
"$BREW" install xcodesorg/made/xcodes aria2 2>/dev/null || "$BREW" install xcodes aria2 || true
# OPTIONAL tooling for the FULL Xcode path (documented below): `xcodes` + `aria2` for fast, resumable
# downloads. Purely best-effort — `xcodes` has no prebuilt bottle on beta macOS, so Homebrew would try
# to build it from source and fail (harmless `make` error); we don't need it for the base to work.
# Keep it fully quiet so a build-from-source failure never looks like a provisioning error.
if "$BREW" install --quiet aria2 xcodesorg/made/xcodes >/dev/null 2>&1; then
echo " ✓ installed xcodes + aria2 (optional full-Xcode helpers)."
else
echo " (skipped xcodes — optional, only for the manual full-Xcode install; no beta bottle. aria2 …)"
"$BREW" install --quiet aria2 >/dev/null 2>&1 || true
fi
cat <<'EOF'
── FULL Xcode + iOS simulators (optional, needs an Apple ID) ─────────────────────────────────