Skip to content

Commit

Permalink
Fix another potential warning on Perl 5.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
plicease authored and rjbs committed Aug 8, 2015
1 parent 2fe62cd commit faa8318
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 8 additions & 4 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ Revision history for {{$dist->name}}
- build_element support added for [ModuleBuild] (thanks, David
Wheeler!)
- PkgVersion now skips .pod files (David Golden)
- new native filefinder :ExtraTestFiles
- [AutoPrereqs] now looks for develop prerequisites in xt/
- new file finder ':PerlExecFiles'
- new native filefinder :ExtraTestFiles (thanks, Karen Etheridge)
- [AutoPrereqs] now looks for develop prerequisites in xt/ (thanks,
Karen Etheridge)
- new file finder ':PerlExecFiles' (thanks, Karen Etheridge)
- try harder to notice failure to set up build root, especially on
Win32 (thanks, Christian Walde)
- better errors when a global config package isn't available (thanks,
Karen Etheridge)
- added the "ignore" option to [Encoding] (thanks, Yanick Champoux)
- allow ; authordep specifications to contain version ranges
- allow ; authordep specifications to contain version ranges (thanks,
Karen Etheridge)
- better error when PAUSE credentials can't be loaded (thanks, David
Golden)

5.037 2015-06-04 21:46:38-04:00 America/New_York
- issue a warning when version ranges are passed through to
Expand Down
4 changes: 3 additions & 1 deletion lib/Dist/Zilla/Tester.pm
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@ sub minter { 'Dist::Zilla::Tester::_Minter' }

my $global_config_root = Path::Class::dir($tester_arg->{global_config_root})->absolute;

local $ENV{DZIL_GLOBAL_CONFIG_ROOT} = $global_config_root;
local $ENV{DZIL_GLOBAL_CONFIG_ROOT};
$ENV{DZIL_GLOBAL_CONFIG_ROOT} = $tester_arg->{global_config_root}
if defined $ENV{DZIL_GLOBAL_CONFIG_ROOT};

my $global_stashes = $self->_setup_global_config(
$global_config_root,
Expand Down

0 comments on commit faa8318

Please sign in to comment.