mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-01 12:08:55 +02:00
Fix exit code to 1 due to php exit code that cannot be greater than 254
This commit is contained in:
+1
-1
@@ -139,7 +139,7 @@ class Console
|
||||
if (is_int($exitCode) && $exitCode !== 0) {
|
||||
throw new Exception("Command execution failed with following exit code: $exitCode.", $exitCode);
|
||||
} elseif (is_bool($exitCode) && !$exitCode) {
|
||||
$exitCode = 1000;
|
||||
$exitCode = 1;
|
||||
throw new Exception("Command execution failed.", $exitCode);
|
||||
}
|
||||
} catch (Exception $exception) {
|
||||
|
||||
Reference in New Issue
Block a user