From a4542eacb3b4a70f4dcfe85486b120be6d7980c4 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Fri, 21 Aug 2026 07:24:22 +0200 Subject: [PATCH] tdarr: make unzip non-interactive to prevent hang on repeat/automated updates (#16648) --- ct/tdarr.sh | 2 +- install/tdarr-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/tdarr.sh b/ct/tdarr.sh index fad25eccf..867d9ff01 100644 --- a/ct/tdarr.sh +++ b/ct/tdarr.sh @@ -36,7 +36,7 @@ function update_script() { cd /opt/tdarr RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1) curl_with_retry "$RELEASE" "Tdarr_Updater.zip" - $STD unzip Tdarr_Updater.zip + $STD unzip -o Tdarr_Updater.zip chmod +x Tdarr_Updater $STD ./Tdarr_Updater rm -rf /opt/tdarr/Tdarr_Updater.zip diff --git a/install/tdarr-install.sh b/install/tdarr-install.sh index 9024e2002..43c0fa240 100644 --- a/install/tdarr-install.sh +++ b/install/tdarr-install.sh @@ -22,7 +22,7 @@ mkdir -p /opt/tdarr cd /opt/tdarr RELEASE=$(curl_with_retry "https://f000.backblazeb2.com/file/tdarrs/versions.json" "-" | grep -oP '(?<="Tdarr_Updater": ")[^"]+' | grep "linux_$(arch_resolve "x64" "arm64")" | head -n 1) curl_with_retry "$RELEASE" "Tdarr_Updater.zip" -$STD unzip Tdarr_Updater.zip +$STD unzip -o Tdarr_Updater.zip chmod +x Tdarr_Updater $STD ./Tdarr_Updater rm -rf /opt/tdarr/Tdarr_Updater.zip