From 0b48fdf7fdcb76bf6388d7acca93659bdd44dcf4 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 3 Feb 2026 16:08:34 -0500 Subject: [PATCH] [FIX] tools.func: trim spaces in app_lc (#11512) --- misc/tools.func | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index 0e53ce594..e2fc09fea 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -1531,7 +1531,8 @@ check_for_gh_release() { local app="$1" local source="$2" local pinned_version_in="${3:-}" # optional - local app_lc="${app,,}" + local app_lc="" + app_lc="$(echo "${app,,}" | tr -d ' ')" local current_file="$HOME/.${app_lc}" msg_info "Checking for update: ${app}"