From e8eb17f5b4c421b75447e529b481d77c1a4d6484 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 9 May 2025 20:14:04 +0200 Subject: [PATCH] Update tools.func --- misc/tools.func | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index b632665..1573c79 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -506,7 +506,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 @@ -676,6 +676,7 @@ fetch_and_deploy_gh_release() { rm -rf "$tmpdir" } + setup_local_ip_helper() { local BASE_DIR="/usr/local/community-scripts/ip-management" local SCRIPT_PATH="$BASE_DIR/update_local_ip.sh"