.lib/sh/util.sh

Fri, 06 May 2022 05:12:36 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 06 May 2022 05:12:36 -0400
changeset 989
b5df8971e99b
parent 969
28111ba4e573
permissions
-rw-r--r--

add stow stub

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