fix: add python3 verification for preflight DNS checks in macbook setup script

This commit is contained in:
S
2026-03-02 09:15:20 -05:00
parent 22bf55010b
commit fe5023b3ee

View File

@@ -80,6 +80,15 @@ else
exit 1 exit 1
fi fi
# Verify python3 for preflight DNS checks
if command -v python3 &>/dev/null; then
log_success "python3 found"
else
log_error "python3 not found — required for preflight DNS validation"
log_error "Install it with: brew install python"
exit 1
fi
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
# Xcode Command Line Tools # Xcode Command Line Tools
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------