From 00c6e7c6642ace870fc3062225c401e49db7a50e Mon Sep 17 00:00:00 2001 From: Shlee Date: Sun, 26 Jun 2022 15:52:19 +0930 Subject: [PATCH] Update Installer.php --- app/Console/Commands/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/Installer.php b/app/Console/Commands/Installer.php index 9867b3d7d..1f75cd4d1 100644 --- a/app/Console/Commands/Installer.php +++ b/app/Console/Commands/Installer.php @@ -154,7 +154,7 @@ class Installer extends Command } } - $continue = $this->choice('Do you wish to continue?', ['no', 'yes'], 0); + $continue = $this->choice('Do you wish to continue?', ['yes', 'no'], 0); $this->continue = $continue; if ($this->continue === 'no') { $this->info('Exiting Installer.'); @@ -457,7 +457,7 @@ class Installer extends Command if ($existing = $this->existingEnv($key, $payload)) { } else { - $this->info("$key empty - $error"); + $this->error("$key empty - $error"); } }