From f16f7a130ab32f60568093b91993cb9dfb16bca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Wed, 20 Aug 2025 20:08:33 +0200 Subject: [PATCH] Fix update (#7027) --- ct/komga.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/komga.sh b/ct/komga.sh index 86e90fedf..b332c3d2d 100644 --- a/ct/komga.sh +++ b/ct/komga.sh @@ -29,7 +29,7 @@ function update_script() { fi RELEASE=$(curl -fsSL https://api.github.com/repos/gotson/komga/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') - if [[ ! -f ~/.komga ]] || [[ "${RELEASE}" != "$(cat ~/.komga)" ]]; then + if [[ ! -f ~/.komga-org ]] || [[ "${RELEASE}" != "$(cat ~/.komga-org)" ]]; then msg_info "Stopping ${APP}" systemctl stop komga msg_ok "Stopped ${APP}"