From 917f2f1d741adf962a842c4886d239344251bd7f Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Wed, 30 Aug 2023 12:32:10 -0700 Subject: [PATCH] Update installation confirmation text Let the user know a backup will be created. --- src/Appwrite/Platform/Tasks/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/Install.php b/src/Appwrite/Platform/Tasks/Install.php index aaf72d5f20..22355d0269 100644 --- a/src/Appwrite/Platform/Tasks/Install.php +++ b/src/Appwrite/Platform/Tasks/Install.php @@ -68,7 +68,7 @@ class Install extends Action if ($data !== false) { if ($interactive == 'Y' && Console::isInteractive()) { - $answer = Console::confirm('Previous installation found, do you want to overwrite it? (Y/n)'); + $answer = Console::confirm('Previous installation found, do you want to overwrite it (a backup will be created before overwriting)? (Y/n)'); if ($answer !== 'Y') { Console::info('No action taken.');