Skip to content

Commit 367d49d

Browse files
committed
add hash bang to script files so dependencies are picked up
1 parent 35e7843 commit 367d49d

6 files changed

+12
-5
lines changed

META.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Christian Walde <walde.christian@gmail.com>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Zilla version 5.031, CPAN::Meta::Converter version 2.143240",
7+
"generated_by" : "Dist::Zilla version 5.036, CPAN::Meta::Converter version 2.143240",
88
"license" : [
99
"unrestricted"
1010
],
@@ -85,6 +85,7 @@
8585
"constant" : "0",
8686
"curry" : "0",
8787
"lib" : "0",
88+
"local::lib" : "0",
8889
"perl" : "5.010",
8990
"strictures" : "0"
9091
}

Makefile.PL

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.031.
1+
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.036.
32
use strict;
43
use warnings;
54

@@ -71,6 +70,7 @@ my %WriteMakefileArgs = (
7170
"constant" => 0,
7271
"curry" => 0,
7372
"lib" => 0,
73+
"local::lib" => 0,
7474
"strictures" => 0
7575
},
7676
"TEST_REQUIRES" => {
@@ -140,6 +140,7 @@ my %FallbackPrereqs = (
140140
"constant" => 0,
141141
"curry" => 0,
142142
"lib" => 0,
143+
"local::lib" => 0,
143144
"strict" => 0,
144145
"strictures" => 0,
145146
"warnings" => 0
@@ -162,5 +163,3 @@ package
162163
MY;
163164
use File::ShareDir::Install qw(postamble);
164165
}
165-
166-

bin/generate_colors

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/perl
2+
13
package generate_colors;
24

35
use strictures;

bin/microidium

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/perl
2+
13
package microidium;
24

35
use strictures;

bin/microidium_server

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/perl
2+
13
package microidium_server;
24

35
use strictures;

cpanfile

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ requires "Time::HiRes" => "0";
3939
requires "constant" => "0";
4040
requires "curry" => "0";
4141
requires "lib" => "0";
42+
requires "local::lib" => "0";
4243
requires "perl" => "5.010";
4344
requires "strictures" => "0";
4445

0 commit comments

Comments
 (0)