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

@@ -103,7 +103,7 @@ function update_script() {
cd /opt/dispatcharr
rm -rf .venv
$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 "Updated Dispatcharr Backend"