perl-catalyst / catalyst-runtime

The Elegant MVC Web Application Framework
265 stars 102 forks source link

fix exit status #188

Closed mauke closed 11 months ago

mauke commented 11 months ago

exit has higher precedence than ?:, so exit $has_errors ? 1 : 0 parses as (exit $has_errors) ? 1 : 0, which is not what was intended.