From e0b327c2b6def57a0578644b6e36a45b6501a86c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sat, 2 May 2026 19:02:32 +0200 Subject: [PATCH] Update misc/tools.func MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- misc/tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index a4fcd5e25..cdc10e369 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -8920,7 +8920,7 @@ function fetch_and_deploy_gl_release() { ensure_dependencies jq local repo_encoded - repo_encoded=$(python3 -c "import urllib.parse, sys; print(urllib.parse.quote(sys.argv[1], safe=''))" "$repo" 2>/dev/null || + repo_encoded=$(printf '%s' "$repo" | sed 's|/|%2F|g') echo "$repo" | sed 's|/|%2F|g') local api_base="https://gitlab.com/api/v4/projects/$repo_encoded/releases"