From 4e9352572fb83698805535db286a1c6b5c1757fa Mon Sep 17 00:00:00 2001 From: Donovan Date: Tue, 5 May 2026 16:05:31 -0300 Subject: [PATCH] Fix container count message in update-apps.sh (#14265) Trivial update that corrects displayed container count by dividing by 3 (pct list displays 3 columns for each container) --- tools/pve/update-apps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pve/update-apps.sh b/tools/pve/update-apps.sh index 129420f9e..7d891464f 100644 --- a/tools/pve/update-apps.sh +++ b/tools/pve/update-apps.sh @@ -199,7 +199,7 @@ while read -r container; do menu_items+=("$container_id" "$formatted_line" "OFF") fi done <<<"$containers" -msg_ok "Loaded ${#menu_items[@]} containers" +msg_ok "Loaded $((${#menu_items[@]} / 3)) containers" # Determine container selection based on var_container if [[ -n "$var_container" ]]; then