From ecc96cb32788ed4812f2eb82e5f7576c280e3712 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 27 May 2025 15:54:03 +0200 Subject: [PATCH] update fetch_and_deploy function --- misc/tools.func | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index f1ff7073a..52f17d67f 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -650,7 +650,8 @@ install_mongodb() { fetch_and_deploy_gh_release() { local repo="$1" - local app=${APP:-$(echo "${APPLICATION,,}" | tr -d ' ')} + local raw_app="${APP:-$APPLICATION}" + local app=$(echo "${raw_app,,}" | tr -d ' ') local api_url="https://api.github.com/repos/$repo/releases/latest" local header=() local attempt=0