[FIXED] Arreglar mensaje cuando el proyecto ya existe
This commit is contained in:
parent
c16eec5ca5
commit
8fbc286d50
1 changed files with 3 additions and 1 deletions
|
@ -128,7 +128,9 @@ function request_project_name() {
|
||||||
|
|
||||||
# Verificar si el proyecto ya existe
|
# Verificar si el proyecto ya existe
|
||||||
if [ -d "$PROJECT_PATH" ]; then
|
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
|
if [ $? -eq 0 ]; then
|
||||||
request_project_name
|
request_project_name
|
||||||
|
|
Loading…
Reference in a new issue