bin/setup-cpan-faves

Sun, 10 Nov 2019 00:07:26 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 10 Nov 2019 00:07:26 -0600
changeset 818
3671ad077d67
parent 816
f058603b86b6
child 819
58f9d9741852
permissions
-rwxr-xr-x

fix tabline ignores

#!/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