Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit 28fc42f

Browse files
committed
copy au++'s ISO fix from t/fudgeandrun
1 parent 4ff01b5 commit 28fc42f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

t/update_passing_test_data.pl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ =head1 DESCRIPTION
4141
my @wanted;
4242

4343
$ENV{PUGS_USE_EXTERNAL_TEST}=1;
44-
$ENV{LC_ALL} = "en_US.ISO-8859-1";
44+
if ($^O eq 'darwin') {
45+
$ENV{LC_ALL}="en_US.ISO8859-1";
46+
}
47+
else {
48+
$ENV{LC_ALL}="en_US.ISO-8859-1";
49+
}
4550

4651
find({ wanted => \&queue, no_chdir => 1 }, 't/spec/');
4752

0 commit comments

Comments
 (0)