From 30900b31f272bd20b1d5a402ff984333de766ccd Mon Sep 17 00:00:00 2001 From: "Mauro Rosero P." Date: Fri, 4 Apr 2025 09:35:50 -0500 Subject: [PATCH] [IMPROVED] Eliminado mensaje redundante en devset.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Suprimido mensaje informativo cuando el directorio ya está en PATH - Simplifica la salida para evitar información duplicada 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- bin/devset.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/devset.sh b/bin/devset.sh index 0ac9f12..c17c4e2 100755 --- a/bin/devset.sh +++ b/bin/devset.sh @@ -43,8 +43,6 @@ function add_to_path() { if ! path_contains "$bin_path"; then export PATH="$bin_path:$PATH" echo "✅ ${head_success}: '$bin_path' ${head_002}" - else - echo "ℹ️ ${head_info}: '$bin_path' ${head_002}" fi }