From 7e06aa5734a8369cfe107559498d2b0da0a5fe3d Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 13 May 2025 10:10:14 +0200 Subject: [PATCH] Update tools.func --- misc/tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index c2c543e..ece90ca 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -568,7 +568,7 @@ fetch_and_deploy_gh_release() { fi tag=$(echo "$api_response" | jq -r '.tag_name // .name // empty') - [[ "$tag" =~ ^v[0-9] ]] && tag="${tag:1}" + version="${tag#v}" if [[ -z "$tag" ]]; then $STD msg_info "Empty tag received, retrying...\n"