From 9bc339d2f4985c9a30170a8432562ffcd7d2709f Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Mon, 12 Aug 2024 13:24:39 -0400 Subject: [PATCH] fix: qbittorrent swap to qt5 builds (#1077) --- apps/qbittorrent/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/qbittorrent/Dockerfile b/apps/qbittorrent/Dockerfile index 9f7fa908d..07763a6ac 100644 --- a/apps/qbittorrent/Dockerfile +++ b/apps/qbittorrent/Dockerfile @@ -37,11 +37,11 @@ RUN \ case "${CHANNEL}" in \ 'stable') \ export RELEASE=$(curl -sL "https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/dependency-version.json" | jq -r '. | "release-\(.qbittorrent)_v\(.libtorrent_1_2)"') \ - && curl -fsSL -o /app/qbittorrent-nox "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${RELEASE}/${ARCH}-qbittorrent-nox" \ + && curl -fsSL -o /app/qbittorrent-nox "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${RELEASE}/${ARCH}-qt5-qbittorrent-nox" \ ;; \ 'beta') \ export RELEASE=$(curl -sL "https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/dependency-version.json" | jq -r '. | "release-\(.qbittorrent)_v\(.libtorrent_2_0)"') \ - && curl -fsSL -o /app/qbittorrent-nox "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${RELEASE}/${ARCH}-qbittorrent-nox" \ + && curl -fsSL -o /app/qbittorrent-nox "https://github.com/userdocs/qbittorrent-nox-static/releases/download/${RELEASE}/${ARCH}-qt5-qbittorrent-nox" \ ;; \ esac \ && \