bin/homedir-setup

Sun, 26 Mar 2017 15:09:33 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 26 Mar 2017 15:09:33 -0400
changeset 534
6a8fc81c470c
parent 486
608ad4499439
child 756
8bc91181db9d
permissions
-rwxr-xr-x

Add -m minimal option to skip extras

#!/bin/sh
set -eu

minimal=0

case ${1:-} in -m) minimal=1;;
esac

if [ ! -f .zshrc ]; then
  echo "Refusing to run without a .zshrc nearby" >&2
  exit 1
fi

if ! git --version >/dev/null; then
  echo "Please install git!" >&2
  exit 1
fi

pull() {
  echo "$1:"
  git -C "$1" pull --no-tags
}

if ! [ -d .zgen ]; then
  git clone --depth 1 'https://github.com/tarjoilija/zgen.git' .zgen
else
  pull .zgen
  zsh -i -c 'zgen update' || true
fi

if [ "$minimal" -ne 1 ]; then
  if ! [ -d .plenv ]; then
    git clone --depth 1 'https://github.com/tokuhirom/plenv.git' .plenv
    git clone --depth 1 'https://github.com/tokuhirom/Perl-Build.git' .plenv/plugins/perl-build/
  else
    pull .plenv
    pull .plenv/plugins/perl-build
  fi

  if ! [ -d .asdf ]; then
    git clone --depth 1 'https://github.com/asdf-vm/asdf' .asdf
  else
    pull .asdf
  fi

  for LANG in ruby nodejs erlang elixir; do
    if ! [ -d .asdf/plugins/$LANG ]; then
      git clone --depth 1 "https://github.com/asdf-vm/asdf-$LANG" .asdf/plugins/$LANG
    else
      pull .asdf/plugins/$LANG
    fi
  done
fi

# Get rid of older stuff
if [ -d .rbenv ]; then
  echo 'rbenv is still installed' >&2
fi

if [ -d .ndenv ]; then
  echo 'ndenv is still installed' >&2
fi

mercurial