CompUnit::Repository::Perl5 ???

2022-08-08 Thread ToddAndMargo via perl6-users
$ raku -Msigpipe -e 'loop { say "y"}' | sed 3q ===SORRY!=== Error while compiling -e Could not find sigpipe in: /home/tony/.raku /opt/rakudo-pkg/share/perl6/site /opt/rakudo-pkg/share/perl6/vendor /opt/rakudo-pkg/share/perl6/core CompUnit::Repository::AbsolutePath<71837872>

questions about sigpipe

2022-08-08 Thread Marc Chantreux
hello Rakoons, I found the sigpipe module [S13] while reading the Rakudo Weekly news[rwn] so Raku can handle SIGPIPE the way I think is the good one: raku -e 'loop { say "y"}' | sed 3q # some weird error raku -Msigpipe -e 'loop { say "y"}' | sed 3q # just works