dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit c7ec7bcb5656c2cd2bbd9acea32d5d4b59098035
parent 1c9bd36df5d179b4ce31261fb6ed9f4eb38e02e7
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sun,  8 Jul 2018 20:19:30 -0400

Split perl module install into separate file

Diffstat:
Minit/30_macos_recipes.sh | 10----------
Ainit/31_perl_cpan.sh | 10++++++++++
2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/init/30_macos_recipes.sh b/init/30_macos_recipes.sh @@ -97,15 +97,5 @@ for brew in "${brews[@]}"; do brew install "$brew" done - -# notmuch-mutt requirements -[[ ! "$(type -P cpanm)" ]] && echo "cpanm failed to install." && return 1 -cpanm Digest::SHA\ - Mail::Box\ - Mail::Header\ - Mail::Box::Maildir\ - String::ShellQuote\ - Term::ReadLine::Gnu - # install fzf shell extensions /usr/local/opt/fzf/install diff --git a/init/31_perl_cpan.sh b/init/31_perl_cpan.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +# notmuch-mutt requirements +[[ ! "$(type -P cpanm)" ]] && echo "cpanm failed to install." && return 1 +cpanm Digest::SHA\ + Mail::Box\ + Mail::Header\ + Mail::Box::Maildir\ + String::ShellQuote\ + Term::ReadLine::Gnu