fix: add --clear to uv venv calls for uv 0.10 compatibility (#11723)

uv 0.10 requires --clear flag to overwrite existing virtual environments.
Without it, update scripts fail when the venv already exists.

Affected: 13 ct/ update scripts, 25 install/ scripts, glances addon
This commit is contained in:
CanbiZ (MickLesk)
2026-02-09 15:54:22 +01:00
committed by GitHub
parent 927c3a7c48
commit 14755d5efe
39 changed files with 40 additions and 40 deletions

View File

@@ -36,7 +36,7 @@ fetch_and_deploy_gh_release "dispatcharr" "Dispatcharr/Dispatcharr" "tarball"
msg_info "Installing Python Dependencies with uv"
cd /opt/dispatcharr
$STD uv venv
$STD uv venv --clear
$STD uv pip install -r requirements.txt --index-strategy unsafe-best-match
$STD uv pip install gunicorn gevent celery redis daphne
msg_ok "Installed Python Dependencies"