.lib/sh/util.sh@915a78d501d5
.lib/sh/util.sh
Mon, 20 May 2024 12:53:43 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 20 May 2024 12:53:43 -0500
- changeset 1170
- 915a78d501d5
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
Bump nvim-treesitter to more recent commit
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
}