Skip to content

Commit

Permalink
Use #!/usr/bin/env perl
Browse files Browse the repository at this point in the history
Instead of using the hardcoded /usr/bin/perl executable, use
/usr/bin/env perl, so the perlbrew version could be ran.
  • Loading branch information
kovdavid authored and veryrusty committed Dec 23, 2014
1 parent 032a202 commit 87364ee
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/Dancer2/Cookbook.pod
Expand Up @@ -18,7 +18,7 @@ Dancer2 has been designed to be easy to work with - it's trivial to write a
simple web app, but still has the power to work with larger projects. To
start with, let's make an incredibly simple "Hello World" example:

#!/usr/bin/perl
#!/usr/bin/env perl

use Dancer2;

Expand Down
2 changes: 1 addition & 1 deletion script/dancer2
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl
# PODNAME: dancer2
# ABSTRACT: Dancer2 command line interface

Expand Down
2 changes: 1 addition & 1 deletion t/psgi_app_forward_and_pass.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion t/template_tiny/01_compile.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl

use strict;

Expand Down
2 changes: 1 addition & 1 deletion t/template_tiny/02_trivial.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl

use strict;

Expand Down
2 changes: 1 addition & 1 deletion t/template_tiny/03_samples.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl

use strict;

Expand Down
2 changes: 1 addition & 1 deletion t/template_tiny/04_compat.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl

use strict;

Expand Down
2 changes: 1 addition & 1 deletion t/template_tiny/05_preparse.t
@@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl

use strict;

Expand Down

0 comments on commit 87364ee

Please sign in to comment.