Compare commits

...

4 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
bff9821103 drunk 2026-02-20 21:21:11 +01:00
CanbiZ (MickLesk)
b55cb78a0c Ensure git dependency before updating Huntarr
Added dependency check for git before fetching and deploying the GitHub release.
2026-02-20 21:20:33 +01:00
CanbiZ (MickLesk)
674ab93068 Change apt-get to apt for installing dependencies 2026-02-20 21:19:30 +01:00
MickLesk
ea0afa9aa0 fix(huntarr): add build-essential for native pip dependencies
Some Python packages in requirements.txt need a C++ compiler for
native extensions. Without build-essential the uv pip install
step fails with 'command c++ not found'.

Closes #12117
2026-02-20 21:06:43 +01:00
2 changed files with 6 additions and 1 deletions

View File

@@ -35,7 +35,8 @@ function update_script() {
msg_info "Stopping Service"
systemctl stop huntarr
msg_ok "Stopped Service"
ensure_dependencies build-essential
fetch_and_deploy_gh_release "huntarr" "plexguide/Huntarr.io" "tarball"
msg_info "Updating Huntarr"

View File

@@ -13,6 +13,10 @@ setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt install -y build-essential
msg_ok "Installed Dependencies"
PYTHON_VERSION="3.12" setup_uv
fetch_and_deploy_gh_release "huntarr" "plexguide/Huntarr.io" "tarball"