Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Dancer CPAN distribution.

Report information
The Basics
Id: 54759
Status: resolved
Priority: 0/
Queue: Dancer

People
Owner: Nobody in particular
Requestors: v.sarkisov [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.150
Fixed in: (no value)



Subject: dancer helper generates {webapp}.pl with wrong perl executable
{webapp}.pl web server generated by dancer helper is run under /usr/bin/perl by default. The first #! line in {webapp}.pl should have the same perl executable as dancer itself. $ diff -u dancer.orig dancer ==== --- dancer.orig 2010-02-18 10:36:40.326494000 -0500 +++ dancer 2010-02-18 10:36:58.305964000 -0500 @@ -197,7 +197,7 @@ "$appname.pl" => -"#!/usr/bin/perl +"#!$^X use Dancer; use $appname; dance; ====
thanks for the report. This is indeed a good point. Fixed in GH: http://github.com/sukria/Dancer/commit/1fc26607382d08c2083c3cde7ee5912cf9439a62
Fixed in 1.160, thanks for the report