Wizarr: use absolute path to uv (#6221)

- for reasons unknown, updating to 2025.7.7 failed due to uv not being
in the PATH anymore
This commit is contained in:
Chris
2025-07-25 01:03:30 -04:00
committed by GitHub
parent 0484259f39
commit 1ae40a929b
2 changed files with 6 additions and 6 deletions

View File

@ -23,12 +23,12 @@ fetch_and_deploy_gh_release "wizarr" "wizarrrr/wizarr"
msg_info "Configure ${APPLICATION}"
cd /opt/wizarr
uv -q sync --locked
$STD uv -q run pybabel compile -d app/translations
/usr/local/bin/uv -q sync --locked
$STD /usr/local/bin/uv -q run pybabel compile -d app/translations
$STD npm --prefix app/static install
$STD npm --prefix app/static run build:css
mkdir -p ./.cache
$STD uv -q run flask db upgrade
$STD /usr/local/bin/uv -q run flask db upgrade
msg_ok "Configure ${APPLICATION}"
msg_info "Creating env, start script and service"