From 8dddea132c77f3574a985cc629b3346e8ffc1fb7 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 23 Apr 2025 02:08:28 -0400 Subject: [PATCH] karakeep: use nightly channel for yt-dlp (#3992) It's the recommended channel --- ct/karakeep.sh | 3 +++ install/karakeep-install.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ct/karakeep.sh b/ct/karakeep.sh index 0f3829cc5..5461fb7ad 100644 --- a/ct/karakeep.sh +++ b/ct/karakeep.sh @@ -33,6 +33,9 @@ function update_script() { msg_info "Stopping Services" systemctl stop karakeep-web karakeep-workers karakeep-browser msg_ok "Stopped Services" + msg_info "Updating yt-dlp" + $STD yt-dlp --update-to nightly + msg_ok "Updated yt-dlp" msg_info "Updating ${APP} to v${RELEASE}" if [[ $(corepack -v) < "0.31.0" ]]; then $STD npm install -g corepack@0.31.0 diff --git a/install/karakeep-install.sh b/install/karakeep-install.sh index 991012261..073bacba6 100644 --- a/install/karakeep-install.sh +++ b/install/karakeep-install.sh @@ -29,7 +29,7 @@ msg_ok "Installed Dependencies" msg_info "Installing Additional Tools" curl -fsSL "https://github.com/Y2Z/monolith/releases/latest/download/monolith-gnu-linux-x86_64" -o "/usr/bin/monolith" chmod +x /usr/bin/monolith -curl -fsSL "https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux" -o "/usr/bin/yt-dlp" +curl -fsSL "https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/latest/download/yt-dlp_linux" -o "/usr/bin/yt-dlp" chmod +x /usr/bin/yt-dlp msg_ok "Installed Additional Tools"