You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing new version of perlbrew, its shebang looks like:
#!/opt/perlbrew/perls/perl-5.22.3/bin/perl
use strict;
use Config;
BEGIN {
...
But before it was:
#!/usr/bin/env perl
# This chunk of stuff was generated by App::FatPacker. To find the original
# file's code, look for the end of this BEGIN block or the string 'FATPACK'
BEGIN {
my %fatpacked;
...
After I have installed new perl and deleted 5.22.3, perlbrew stopped to work, because /opt/perlbrew/perls/perl-5.22.3/bin/perl is not available anymore.
Please do not hardcode perl version at shebang for perlbrew. Do same as for cpanm: #!/usr/bin/env perl
The text was updated successfully, but these errors were encountered:
KES777
changed the title
Perlbrew does not work after isntalling new perl
Perlbrew does not work after installing new perl and removing old one
Jul 14, 2022
My perlbrew version was:
After installing new version of perlbrew, its shebang looks like:
But before it was:
After I have installed new perl and deleted 5.22.3, perlbrew stopped to work, because
/opt/perlbrew/perls/perl-5.22.3/bin/perl
is not available anymore.Please do not hardcode perl version at shebang for perlbrew. Do same as for
cpanm
:#!/usr/bin/env perl
The text was updated successfully, but these errors were encountered: