.lib/sh/util.sh

Sun, 05 May 2024 13:45:55 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 05 May 2024 13:45:55 -0500
changeset 1159
9a19621f294c
parent 969
28111ba4e573
permissions
-rw-r--r--

Clean up stray swapfiles too

warn() { echo "$*" >&2; }
die() { warn "$*"; exit 1; }

clone_or_pull() {
  if ! [ -d $2 ]; then
    git clone --single-branch --depth 1 "$1" $2
  else
    echo "$2:"
    git -C "$2" pull
  fi
}

mercurial