From d0d38525df60974524fe01243c36a8703648028c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davor=20Raci=C4=87?= Date: Sun, 8 Feb 2026 15:59:14 +0100 Subject: [PATCH] fix: remove redundant modules and tools lines from install summary The checkmark list already shows each installed module and IDE tool. Keep only the install path and file-warning lines in the summary footer. Co-Authored-By: Claude Opus 4.6 --- tools/cli/installers/lib/core/installer.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tools/cli/installers/lib/core/installer.js b/tools/cli/installers/lib/core/installer.js index 1e161bdc8..d976a1354 100644 --- a/tools/cli/installers/lib/core/installer.js +++ b/tools/cli/installers/lib/core/installer.js @@ -1201,19 +1201,11 @@ class Installer { lines.push(` ${icon} ${r.step}${detail}`); } - // Add context info + // Context and warnings lines.push(''); if (context.bmadDir) { lines.push(` Installed to: ${color.dim(context.bmadDir)}`); } - if (context.modules && context.modules.length > 0) { - lines.push(` Modules: ${color.dim(context.modules.join(', '))}`); - } - if (context.ides && context.ides.length > 0) { - lines.push(` Tools: ${color.dim(context.ides.join(', '))}`); - } - - // Custom/modified file warnings if (context.customFiles && context.customFiles.length > 0) { lines.push(` ${color.cyan(`Custom files preserved: ${context.customFiles.length}`)}`); }