From bbd0cb2de092e1b4a502a873d95d836708ffb26f Mon Sep 17 00:00:00 2001 From: "Mauro Rosero P." Date: Sat, 15 Mar 2025 12:44:47 -0500 Subject: [PATCH] =?UTF-8?q?[FIXED]=20Simplificar=20men=C3=BA=20principal?= =?UTF-8?q?=20en=20versadm=5Ftoken.sh=20para=20mostrar=20solo=20nombres=20?= =?UTF-8?q?de=20plataformas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- bin/versadm_token.sh | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/bin/versadm_token.sh b/bin/versadm_token.sh index b3c8135..fe9a4ca 100755 --- a/bin/versadm_token.sh +++ b/bin/versadm_token.sh @@ -297,17 +297,10 @@ test_connection() { # Función principal para gestionar tokens manage_vcs_token() { - # Construir opciones para el menú + # Construir opciones para el menú - solo nombres de plataformas local menu_options="" for i in "${!VCS_TYPES[@]}"; do - local token_file="$SOPS_CONFIG_DIR/${VCS_TOKENS[$i]}" - local status="" - if [ -f "$token_file" ]; then - status="[✓]" - else - status="[ ]" - fi - menu_options+="$((i+1)) \"${VCS_TYPES[$i]} $status\" " + menu_options+="$((i+1)) \"${VCS_TYPES[$i]}\" " done # Mostrar menú de selección