thaljef / Pinto

Curate your own repository of Perl modules
https://metacpan.org/module/Pinto::Manual
66 stars 49 forks source link

fix exit status #258

Open mauke opened 10 months ago

mauke commented 10 months ago

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