From 041ebdf08a81d21ad3a10212657c024132568bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Haso=C5=88?= Date: Sun, 5 Jun 2022 18:48:04 +0200 Subject: [PATCH] Return error code --- framework/core/src/Install/Console/InstallCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index 3399c8bb89..d6b464054f 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -73,6 +73,8 @@ protected function fire() $this->info('DONE.'); } else { $this->showProblems($problems); + + return 1; } }