From 72300814013aa190272857b17c4476262abfffb9 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Mon, 20 Oct 2025 00:02:53 +0000 Subject: [PATCH] fix(install): bad release substitution --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index cf91fd7..2d18f06 100644 --- a/install.sh +++ b/install.sh @@ -49,6 +49,7 @@ fi # Where to download the binary TAG=$(curl -sLf https://repo.katenary.io/api/v1/repos/katenary/katenary/releases/latest 2>/dev/null | grep -Po '"tag_name":\s*"[^"]*"' | cut -d ":" -f2 | tr -d '"') +TAG=${TAG#releases/} # use the right names for the OS and architecture if [ $ARCH = "x86_64" ]; then @@ -57,6 +58,7 @@ fi BIN_URL="https://repo.katenary.io/api/packages/Katenary/generic/katenary/$TAG/katenary-$OS-$ARCH" + echo echo "Downloading $BIN_URL"