bin/setup-cpan-faves

Thu, 03 Oct 2019 01:16:54 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 03 Oct 2019 01:16:54 -0500
changeset 794
152f0c95cbb0
parent 786
63160e727e37
child 816
f058603b86b6
permissions
-rwxr-xr-x

drop ag.vim; this seems to cover all i do (plus rg)

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

dists=(
  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
)

command -v cpm &>/dev/null ||
  cpanm App::cpm

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

mercurial