bin/setup-cpan-faves

Thu, 31 Oct 2019 17:48:12 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 31 Oct 2019 17:48:12 -0500
changeset 816
f058603b86b6
parent 786
63160e727e37
child 819
58f9d9741852
permissions
-rwxr-xr-x

bootstrap cpm and keep cpm updated, and plenv shims

#!/bin/bash
set -eu -o pipefail

dists=(
  App::cpm

  Perl::Tidy
  Pod::Cpandoc

  experimentals

  Reply
  Data::Printer
  Data::Printer::Filter::JSON
  Data::Printer::Filter::URI
  Carp::Always
  B::Keywords
  Term::ReadLine::Gnu
  Class::Refresh
  Pry

  Path::Tiny
  Getopt::Long::Descriptive
)

if ! command -v cpm &>/dev/null; then
  curl -fsSL --compressed https://git.io/cpm |
    perl - install -g App::cpm

  plenv rehash || :
fi

cpm install -g "${dists[@]}"

plenv rehash || :

mercurial