Merge pull request #1829 from neoascetic/return_non_0_on_command_fail

Exit with non-zero if command fails, useful in scripting and CI
This commit is contained in:
Taylor Otwell
2013-03-29 05:54:48 -07:00

View File

@@ -43,7 +43,8 @@ try
} }
catch (\Exception $e) catch (\Exception $e)
{ {
echo $e->getMessage(); echo $e->getMessage().PHP_EOL;
exit(1);
} }
echo PHP_EOL; echo PHP_EOL;