From 010d5ede73c73cfe941a05ba6a9d39b6d589a04f Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Wed, 22 Apr 2026 06:43:17 +0200 Subject: [PATCH] fix uv clearing on update --- ct/arm.sh | 2 +- ct/fireshare.sh | 2 +- ct/soulsync.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/arm.sh b/ct/arm.sh index 74f61f00..0270a829 100644 --- a/ct/arm.sh +++ b/ct/arm.sh @@ -43,7 +43,7 @@ function update_script() { msg_info "Rebuilding Python Environment" cd /opt/arm - $STD uv venv /opt/arm/venv + $STD uv venv --clear /opt/arm/venv $STD uv pip install --python /opt/arm/venv/bin/python \ -r <(curl -fsSL https://raw.githubusercontent.com/automatic-ripping-machine/arm-dependencies/main/requirements.txt) \ -r requirements.txt diff --git a/ct/fireshare.sh b/ct/fireshare.sh index ffadff12..0f0bc620 100644 --- a/ct/fireshare.sh +++ b/ct/fireshare.sh @@ -41,7 +41,7 @@ function update_script() { msg_info "Updating Fireshare" cd /opt/fireshare - $STD uv venv + $STD uv venv --clear $STD .venv/bin/python -m ensurepip --upgrade $STD .venv/bin/python -m pip install --upgrade --break-system-packages pip $STD .venv/bin/python -m pip install --no-cache-dir --break-system-packages --ignore-installed app/server diff --git a/ct/soulsync.sh b/ct/soulsync.sh index 171ed438..ae51f58c 100644 --- a/ct/soulsync.sh +++ b/ct/soulsync.sh @@ -43,7 +43,7 @@ function update_script() { msg_info "Updating Python Dependencies" cd /opt/soulsync - $STD uv venv /opt/soulsync/.venv --python 3.11 + $STD uv venv --clear /opt/soulsync/.venv --python 3.11 $STD /opt/soulsync/.venv/bin/pip install -r requirements-webui.txt msg_ok "Updated Python Dependencies"