Raku / tap-harness6

A TAP harness for Raku
Artistic License 2.0
8 stars 15 forks source link

Avoid using Proc.status #43

Closed Leont closed 2 years ago

Leont commented 2 years ago

This method has been deprecated. Instead we now use Proc.exitcode and Proc.signal to recreate the value.

This is more of a short-term fix, at a later point I want to rewrite it much like this, so that it won't need this weird value anymore.

JJ commented 2 years ago

Thanks!