Skip to content

Commit

Permalink
FIX: correct no_index error in Build.PL config
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Nov 9, 2017
1 parent 16e9229 commit 04fe51d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Build.PL.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build_requires_href => { 'IPC::Run3' => 0, 'Probe::Perl' => 0, %{$config{'build_
#sign => 'true'
#recursive_test_files = 'true'

no_index_href => { %{$config{'no_index_href'}}, directory => [ 'eg', 'extras', 'notes', $config{'no_index_href'}{directory} ], }
no_index_href => { %{$config{'no_index_href'}}, directory => [ 'eg', 'extras', 'notes', @{$config{'no_index_href'}{directory}} ], }

#create_readme => 'true' # create README from module pod
#create_makefile_pl => 'passthrough', # passthrough Makefile.PL (download/install Module::Build from CPAN if missing, deprecated [use 'small' and 'configure_requires']) [see PerlDOC: module::build::compat]
Expand Down
8 changes: 3 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@
"eg",
"extras",
"notes",
[
"inc",
"t",
"xt"
]
"inc",
"t",
"xt"
]
},
"prereqs" : {
Expand Down
7 changes: 3 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,9 @@ no_index:
- eg
- extras
- notes
-
- inc
- t
- xt
- inc
- t
- xt
provides:
Win32::CommandLine:
file: lib/Win32/CommandLine.pm
Expand Down

0 comments on commit 04fe51d

Please sign in to comment.