Skip to content

Commit

Permalink
stop installing so many modules with --dev
Browse files Browse the repository at this point in the history
metacpan search returns incorrect results for some files, causing older
distributions to be installed and shadowing the newer version

see metacpan/metacpan-api#483
  • Loading branch information
karenetheridge committed Jun 14, 2016
1 parent 2c995c8 commit ecb9dc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install/generic/configs/.profile.d/perl.sh
Expand Up @@ -291,8 +291,9 @@ cpanm_firstcomedists() {

cpanm_myreleases() {
local dists=$(grep '\bE/ET/ETHER/' ~/.cpanm/02packages.details.txt | cut -d" " -f 1)
echo cpanmdev --no-report-perl-version --with-develop $dists
cpanmdev --no-report-perl-version --with-develop $dists
# FIXME: not installing --dev until metacpan is fixed: https://github.com/CPAN-API/cpan-api/issues/483
echo cpanm --no-report-perl-version --with-develop $dists
cpanm --no-report-perl-version --with-develop $dists
}

firstcome_bugs() {
Expand Down

0 comments on commit ecb9dc5

Please sign in to comment.