fix: add python3 verification for preflight DNS checks in macbook setup script
This commit is contained in:
@@ -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
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user