[FIX] tools.func: trim spaces in app_lc (#11512)

This commit is contained in:
Chris
2026-02-03 16:08:34 -05:00
committed by GitHub
parent f9c5c1d0b4
commit 0b48fdf7fd

View File

@@ -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}"