Skip to content

Commit b89bc06

Browse files
demerphqbingos
authored andcommitted
Setup/BFD - use 0..9 not -9 as characters in tempdir
It doesn't matter much, in sense that the code works fine, but 0..9 is what I intended. :-)
1 parent dce631e commit b89bc06

File tree

1 file changed

+1
-1
lines changed
  • t/lib/MakeMaker/Test/Setup

1 file changed

+1
-1
lines changed

t/lib/MakeMaker/Test/Setup/BFD.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ my $tmpdir;
108108
# if given args, those are inserted as components in resulting path, eg:
109109
# setup_recurs('dir') means instead of creating Big-Dummy/*, dir/Big-Dummy/*
110110
sub setup_recurs {
111-
my @chrs=("A".."Z",0-9);
111+
my @chrs = ( "A" .. "Z", 0 .. 9 );
112112
# annoyingly we cant use File::Temp here as it drags in XS code
113113
# and we run under blocks to prevent XS code loads. This is a minimal
114114
# patch to fix the issue.

0 commit comments

Comments
 (0)