From 69d38144b510bafa48b309041bf9357344eab909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Wed, 11 Feb 2026 08:11:24 +0100 Subject: [PATCH] Provide available options for user confirmation --- Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installer.php b/Installer.php index a91dedf..ee31a8a 100644 --- a/Installer.php +++ b/Installer.php @@ -92,7 +92,7 @@ public function copyC3V2(Event $event) return; } if (file_exists(getcwd() . DIRECTORY_SEPARATOR . 'c3.php')) { - $replace = $this->io->askConfirmation("c3.php has changed Do you want to replace c3.php with latest version?", false); + $replace = $this->io->askConfirmation("c3.php has changed Do you want to replace c3.php with latest version? [y/N] ", false); if (!$replace) { return; }