From 50525138f4faece6811dd1744d18956f2d58cbba Mon Sep 17 00:00:00 2001 From: Aleksandar Stojanov Date: Wed, 25 Oct 2023 00:37:41 +0200 Subject: [PATCH] fix wrong tag format Signed-off-by: Aleksandar Stojanov --- install-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-binary.sh b/install-binary.sh index 714275b..712bdcd 100755 --- a/install-binary.sh +++ b/install-binary.sh @@ -75,7 +75,7 @@ getDownloadURL() { fi # Setup Download Url - DOWNLOAD_URL="https://github.com/${PROJECT_GH}/releases/download/${version}/${PROJECT_NAME}-${OS}_${ARCH}-${version#v}.tgz" + DOWNLOAD_URL="https://github.com/${PROJECT_GH}/releases/download/${version}/${PROJECT_NAME}-${OS}_${ARCH}-${version}.tgz" } # downloadFile downloads the latest binary package and also the checksum