From c604aeb064c022af45d0078ed53497ba550071b9 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 9 May 2025 20:30:29 +0200 Subject: [PATCH] fix app/application var mapping (#4357) --- misc/tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index 7ad1c023c..50520ca44 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -479,7 +479,7 @@ install_mongodb() { fetch_and_deploy_gh_release() { local repo="$1" - local app=$(echo ${APPLICATION,,} | tr -d ' ') + local app=${APP:-$(echo "${APPLICATION,,}" | tr -d ' ')} local api_url="https://api.github.com/repos/$repo/releases/latest" local header=() local attempt=0