tools/setup: remove vestigial mac .env file

This commit is contained in:
Adeeb Shihadeh
2026-02-28 16:44:00 -08:00
committed by GitHub
parent a27efe5796
commit ca5234a32f
-5
View File
@@ -111,11 +111,6 @@ function install_python_deps() {
echo "installing python packages..."
uv sync --frozen --all-extras
source .venv/bin/activate
if [[ "$(uname)" == 'Darwin' ]]; then
touch "$ROOT"/.env
echo "export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES" >> "$ROOT"/.env
fi
}
# --- Main ---