Skip to content

Commit 010d5ed

Browse files
committed
fix uv clearing on update
1 parent f065585 commit 010d5ed

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ct/arm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function update_script() {
4343

4444
msg_info "Rebuilding Python Environment"
4545
cd /opt/arm
46-
$STD uv venv /opt/arm/venv
46+
$STD uv venv --clear /opt/arm/venv
4747
$STD uv pip install --python /opt/arm/venv/bin/python \
4848
-r <(curl -fsSL https://raw.githubusercontent.com/automatic-ripping-machine/arm-dependencies/main/requirements.txt) \
4949
-r requirements.txt

ct/fireshare.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function update_script() {
4141

4242
msg_info "Updating Fireshare"
4343
cd /opt/fireshare
44-
$STD uv venv
44+
$STD uv venv --clear
4545
$STD .venv/bin/python -m ensurepip --upgrade
4646
$STD .venv/bin/python -m pip install --upgrade --break-system-packages pip
4747
$STD .venv/bin/python -m pip install --no-cache-dir --break-system-packages --ignore-installed app/server

ct/soulsync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function update_script() {
4343

4444
msg_info "Updating Python Dependencies"
4545
cd /opt/soulsync
46-
$STD uv venv /opt/soulsync/.venv --python 3.11
46+
$STD uv venv --clear /opt/soulsync/.venv --python 3.11
4747
$STD /opt/soulsync/.venv/bin/pip install -r requirements-webui.txt
4848
msg_ok "Updated Python Dependencies"
4949

0 commit comments

Comments
 (0)