From f357d9ca4d5deb2ee2d645f61b8d7cf2b28c6ae8 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Mon, 24 Oct 2022 15:47:52 +0200 Subject: [PATCH] fix(install): bad command in error message --- install/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.php b/install/install.php index f9cdb3d89..10fa0c6e0 100644 --- a/install/install.php +++ b/install/install.php @@ -159,7 +159,7 @@ public function upgrade(Migration $migration, $args = []): bool { $message = sprintf( __('The database schema is not consistent with the installed Formcreator %s. To see the logs run the command %s', 'formcreator'), $oldVersion, - 'bin/console glpi:plugin:install formcreator -f' + 'bin/console glpi:database:check_schema_integrity -p formcreator' ); if (!isCommandLine()) { Session::addMessageAfterRedirect($message, false, ERROR);