Merge pull request #3561 from shleeable/patch-1

Installer.php minor fixes
This commit is contained in:
daniel 2022-06-26 12:25:15 -06:00 committed by GitHub
commit 8e874eb2e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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");
}
}