From f1f9006707a2324505a9d97b32f07bf5a28aa37e Mon Sep 17 00:00:00 2001 From: Reedy Date: Tue, 10 Sep 2019 03:19:51 +0100 Subject: [PATCH] Display error if Installer->execute() doesn't return a good status object Bug: T232425 Change-Id: Ic41acdfd6cdd96a393e0b2af28f69da1ff6653b7 --- maintenance/install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maintenance/install.php b/maintenance/install.php index 28a1746d9e..16b8ccf837 100644 --- a/maintenance/install.php +++ b/maintenance/install.php @@ -133,6 +133,8 @@ class CommandLineInstaller extends Maintenance { if ( !$envChecksOnly ) { $status = $installer->execute(); if ( !$status->isGood() ) { + $installer->showStatusMessage( $status ); + return false; } $installer->writeConfigurationFile( $this->getOption( 'confpath', $IP ) ); -- 2.20.1