From 820bdde2a80f95b2ce394945cf7a3480ffe66a95 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:09:13 +0200 Subject: [PATCH] jellyfin: fix: check --- install/jellyfin-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/jellyfin-install.sh b/install/jellyfin-install.sh index 17de7187f..e140b92d7 100644 --- a/install/jellyfin-install.sh +++ b/install/jellyfin-install.sh @@ -14,7 +14,7 @@ network_check update_os msg_info "Setting Up Hardware Acceleration" -if [ "$(lsb_release -is 2>/dev/null)" != "Ubuntu" ]; then +if ! grep -qEi 'ubuntu' /etc/os-release; then fetch_and_deploy_gh_release "intel-igc-core-2" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-core-2_*_amd64.deb" fetch_and_deploy_gh_release "intel-igc-opencl-2" "intel/intel-graphics-compiler" "binary" "latest" "" "intel-igc-opencl-2_*_amd64.deb" fetch_and_deploy_gh_release "intel-libgdgmm12" "intel/compute-runtime" "binary" "latest" "" "libigdgmm12_*_amd64.deb"