Subject: | dbicadmin: shebang should be /usr/bin/perl |
Hi
Here is the first line of script/dbicadmin in DBIx-Class-0.082820 (and DBIx-Class-0.082899_14):
#!/usr/bin/env perl
The use of /usr/bin/env stops EUMM from replacing the shebang with the real perl location during install. This can lead to situations where the dbicadmin script runs with a perl that doesn't have the DBIx::Class modules installed.
The fix is to replace the shebang with:
#!/usr/bin/perl
--
Olivier Mengué - http://perlresume.org/DOLMEN - https://gratipay.com/dolmen/
Here is the first line of script/dbicadmin in DBIx-Class-0.082820 (and DBIx-Class-0.082899_14):
#!/usr/bin/env perl
The use of /usr/bin/env stops EUMM from replacing the shebang with the real perl location during install. This can lead to situations where the dbicadmin script runs with a perl that doesn't have the DBIx::Class modules installed.
The fix is to replace the shebang with:
#!/usr/bin/perl
--
Olivier Mengué - http://perlresume.org/DOLMEN - https://gratipay.com/dolmen/