[FIXED] Arreglar mensaje cuando el proyecto ya existe

This commit is contained in:
Mauro Rosero P. 2025-03-12 18:12:59 -05:00
parent c16eec5ca5
commit 8fbc286d50
Signed by: mrosero
GPG key ID: 83BD2A5F674B7E26

View file

@ -128,7 +128,9 @@ function request_project_name() {
# Verificar si el proyecto ya existe
if [ -d "$PROJECT_PATH" ]; then
dialog_yesno "${proj_006//'$PROJECT_NAME'/$PROJECT_NAME}"
# Crear mensaje personalizado con el nombre del proyecto
proyecto_existe_msg="El proyecto '$PROJECT_NAME' ya existe. ¿Desea seleccionar otro nombre?"
dialog_yesno "$proyecto_existe_msg"
if [ $? -eq 0 ]; then
request_project_name