Refine n8n workflow import prompt in apply_update.sh

- Updated the user prompt to clarify the response options for importing n8n workflows, enhancing user understanding and interaction.
- Ensured consistency in prompt formatting across the script for improved user experience.
This commit is contained in:
Yury Kossakovsky
2025-05-14 14:35:57 -06:00
parent a1a1d2509a
commit 61ebcc8982

View File

@@ -41,7 +41,7 @@ $COMPOSE_CMD pull || { log_error "Failed to pull Docker images. Check network co
# Ask user about n8n import and modify .env file
if [ -f "$ENV_FILE" ]; then
echo ""
read -p $'Import n8n workflow? (y/n). Select N if you did it already: \n' import_choice
read -p $'Import n8n workflow? (y/n). Enter \'n\' if you did it already: \n' import_choice
case "$import_choice" in
[yY] | [yY][eE][sS] )
# Use a temporary file for sed portability