diff --git a/bin/standardize_scripts.sh b/bin/standardize_scripts.sh index d7a4325..e5e4764 100755 --- a/bin/standardize_scripts.sh +++ b/bin/standardize_scripts.sh @@ -211,7 +211,7 @@ standardize_variables() { # Función principal main() { - dialog_msg_box "$title" "${head_info}: ${head_002} $BIN_HOME/$BIN_BASE" + dialog_error_box "$title" "${head_info}: ${head_002} $BIN_HOME/$BIN_BASE" # Verificar que existe la plantilla de encabezado if [ ! -f "$HEADER_TEMPLATE" ]; then @@ -229,7 +229,7 @@ main() { local total_scripts=$(find "$BIN_HOME/$BIN_BASE" -name "*.sh" | wc -l) local current=0 - dialog_info_box "$title" "${head_info}: ${head_container} $total_scripts" + dialog_error_box "${head_info}" "${head_container} $total_scripts" # Recorrer todos los scripts .sh en el directorio bin for script in "$BIN_HOME/$BIN_BASE"/*.sh; do @@ -258,7 +258,7 @@ main() { echo " ✓ ${head_create}: $(basename "$script")" done - dialog_info_box "$title" "${head_builded} $current ${head_container}.\n\n${head_version}.bak" + dialog_error_box "${head_info}" "${head_builded} $current ${head_container}.\n\n${head_version}.bak" } # Ejecutar función principal