diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-05-09 17:16:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 17:16:26 +0200 |
commit | 00480714389b56c240612651776b6dbc6ebbaf0b (patch) | |
tree | 910f7082caff5b90a191ee81b334de1a078d121e /core | |
parent | 904fdf3aa3e55ec61943178e1fe28b0f89f8ef4f (diff) | |
parent | cd3e7fd1b052e7907aeeaa6b8c91eb3771acf1c4 (diff) | |
download | nextcloud-server-00480714389b56c240612651776b6dbc6ebbaf0b.tar.gz nextcloud-server-00480714389b56c240612651776b6dbc6ebbaf0b.zip |
Merge pull request #38069 from nextcloud/list-supported-db
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Maintenance/Install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index fa93a661906..efb99e51431 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -123,7 +123,7 @@ class Install extends Command { $db = strtolower($input->getOption('database')); if (!in_array($db, $supportedDatabases)) { - throw new InvalidArgumentException("Database <$db> is not supported."); + throw new InvalidArgumentException("Database <$db> is not supported. " . implode(", ", $supportedDatabases) . " are supported."); } $dbUser = $input->getOption('database-user'); |