From 25d838e27b4284e6fd5ad3982fb8f0799393f63b Mon Sep 17 00:00:00 2001 From: vhsdream Date: Mon, 8 Sep 2025 14:31:19 -0400 Subject: [PATCH] Autocaliweb: fix kepubify version parsing --- install/autocaliweb-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/autocaliweb-install.sh b/install/autocaliweb-install.sh index 0686473c..f8b89f81 100644 --- a/install/autocaliweb-install.sh +++ b/install/autocaliweb-install.sh @@ -46,7 +46,7 @@ $STD apt-get install -y --no-install-recommends \ msg_ok "Installed dependencies" fetch_and_deploy_gh_release "kepubify" "pgaskin/kepubify" "singlefile" "latest" "/usr/bin" "kepubify-linux-64bit" -KEPUB_VERSION="$(/usr/bin/kepubify --version)" +KEPUB_VERSION="$(/usr/bin/kepubify --version | awk '{print $2}')" msg_info "Installing Calibre" CALIBRE_RELEASE="$(curl -s https://api.github.com/repos/kovidgoyal/calibre/releases/latest | grep -o '"tag_name": "[^"]*' | cut -d'"' -f4)"