Skip to content

Commit dabed85

Browse files
committed
Empty string works better than 0
Turns out that setting RAKUDO_ERROR_COLOR to 0 does not work well enough across all Rakudo versions. This causes the output to be different on some commits, which may freak out bisectable or even committable if ran across many commits. Empty string works all the time.
1 parent e165681 commit dabed85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Perl6IRCBotable.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use constant BUILDS => abs_path('./builds');
3838
use constant CONFIG => abs_path('./config.json');
3939
use constant SOURCE => 'https://github.com/perl6/bisectbot';
4040

41-
$ENV{'RAKUDO_ERROR_COLOR'} = 0;
41+
$ENV{'RAKUDO_ERROR_COLOR'} = '';
4242

4343
sub timeout {
4444
return 10;

0 commit comments

Comments
 (0)