From 126fa5b5c24250a2de2dabcd359c30470ea2ad6b Mon Sep 17 00:00:00 2001 From: CrazyWolf13 Date: Mon, 5 May 2025 20:30:10 +0200 Subject: [PATCH] fix yarn install --- ct/streamlink-webui.sh | 1 + install/streamlink-webui-install.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ct/streamlink-webui.sh b/ct/streamlink-webui.sh index a10271e..8d4d880 100644 --- a/ct/streamlink-webui.sh +++ b/ct/streamlink-webui.sh @@ -47,6 +47,7 @@ function update_script() { source /opt/"${APPLICATION}"/backend/src/.venv/bin/activate $STD uv pip install -r /opt/streamlink-webui/backend/src/requirements.txt --python=/opt/"${APPLICATION}"/backend/src/.venv cd /opt/"${APPLICATION}"/frontend/src + $STD yarn install $STD yarn build msg_ok "Updated $APP to v${RELEASE}" diff --git a/install/streamlink-webui-install.sh b/install/streamlink-webui-install.sh index f867b77..d6128d7 100644 --- a/install/streamlink-webui-install.sh +++ b/install/streamlink-webui-install.sh @@ -25,6 +25,7 @@ $STD uv venv /opt/"${APPLICATION}"/backend/src/.venv source /opt/"${APPLICATION}"/backend/src/.venv/bin/activate $STD uv pip install -r /opt/streamlink-webui/backend/src/requirements.txt --python=/opt/"${APPLICATION}"/backend/src/.venv cd /opt/"${APPLICATION}"/frontend/src +$STD yarn install $STD yarn build msg_ok "Setup ${APPLICATION}"