fix wildcard

This commit is contained in:
Tobias Meier 2025-05-05 13:38:21 +02:00
parent 4cf21fdcb4
commit a2b512d022
2 changed files with 4 additions and 5 deletions

View File

@ -43,8 +43,8 @@ function update_script() {
install_node_and_modules
setup_uv
fetch_and_deploy_gh_release "CrazyWolf13/streamlink-webui"
$STD uv venv /opt/**/backend/src/.venv
source /opt/**//backend/src/.venv/bin/activate
$STD uv venv /opt/"${APPLICATION}"/backend/src/.venv
source /opt/"${APPLICATION}"/backend/src/.venv/bin/activate
$STD uv sync --all-extras
$STD pip install -r requirements.txt
cd ../../frontend/src

View File

@ -21,15 +21,14 @@ setup_uv
msg_info "Setup ${APPLICATION}"
fetch_and_deploy_gh_release "CrazyWolf13/streamlink-webui"
$STD uv venv /opt/**/backend/src/.venv
source /opt/**//backend/src/.venv/bin/activate
$STD uv venv /opt/"${APPLICATION}"/backend/src/.venv
source /opt/"${APPLICATION}"/backend/src/.venv/bin/activate
$STD uv sync --all-extras
$STD pip install -r requirements.txt
cd ../../frontend/src
$STD yarn build
msg_ok "Setup ${APPLICATION}"
# Creating Service (if needed)
msg_info "Creating Service"
cat <<'EOF' >/opt/"${APPLICATION}".env
CLIENT_ID='your_client_id'