Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Show any output even if the code segfaults
  • Loading branch information
MasterDuke17 committed Jul 24, 2016
1 parent 4fc97b7 commit e0be906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Perl6IRCBotable.pm
Expand Up @@ -61,7 +61,7 @@ sub get_output {

my $exit_status = $? & 127;

$out = do { local $/; <RESULT> } unless defined $out;
$out .= do { local $/; <RESULT> };
chomp $out if defined $out;

return ($out, $exit_status, $s_end - $s_start)
Expand Down

0 comments on commit e0be906

Please sign in to comment.