ubuntu deadsneaks

This commit is contained in:
Mateusz Gruszczyński
2025-10-24 21:22:24 +02:00
parent 99d998bf50
commit b8c94cf17c

View File

@@ -359,7 +359,7 @@ fi
pip_path = venv_bin / "pip" pip_path = venv_bin / "pip"
certbot_path = venv_bin / "certbot" certbot_path = venv_bin / "certbot"
with step(f"Preparing Certbot venv at {venv_dir} (Python {PYTHON_VERSION})"): with step(f"Preparing Certbot venv at {venv_dir} (Python {PYTHON_VERSION})"):
venv_dir.mkdir(parents=True, exist_ok=True) venv_dir.mkdir(parents=True, exist_ok=True)
if not venv_dir.exists() or not pip_path.exists(): if not venv_dir.exists() or not pip_path.exists():
run([str(python311), "-m", "venv", str(venv_dir)]) run([str(python311), "-m", "venv", str(venv_dir)])