.lib/sh/util.sh

Mon, 21 Feb 2022 21:00:41 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Mon, 21 Feb 2022 21:00:41 -0600
changeset 982
51c555ca8a3b
parent 969
28111ba4e573
permissions
-rw-r--r--

Quicker statusline diags

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