.lib/sh/util.sh@7907b9c30399
.lib/sh/util.sh
Sun, 14 Jul 2024 22:56:35 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Sun, 14 Jul 2024 22:56:35 -0500
- changeset 1175
- 7907b9c30399
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
Add which-key.nvim and descriptions
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
}