1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 13:20:17 +02:00
This commit is contained in:
Andrés Montañez 2014-10-11 12:10:07 -02:00
parent 03680b8271
commit 7a9495cf44

View File

@ -135,12 +135,16 @@ class Console
throw new Exception('You must specify an environment for this command.');
}
}
// Run the Command
$exitCode = $command->run();
// Check for errors
if (is_int($exitCode) && $exitCode !== 0) {
throw new Exception("Command execution failed with following exit code: $exitCode.", $exitCode);
throw new Exception('Command execution failed with following exit code: ' . $exitCode, $exitCode);
} elseif (is_bool($exitCode) && !$exitCode) {
$exitCode = 1;
throw new Exception("Command execution failed.", $exitCode);
throw new Exception('Command execution failed.', $exitCode);
}
} catch (Exception $exception) {
self::output('<red>' . $exception->getMessage() . '</red>', 1, 2);