.lib/sh/util.sh@27bf2b97c98f
.lib/sh/util.sh
Sat, 08 Apr 2023 13:58:09 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Sat, 08 Apr 2023 13:58:09 -0500
- changeset 1100
- 27bf2b97c98f
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
Disable editorconfig-vim after nvim-0.9
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
}