.lib/sh/util.sh@8a56361b077f
.lib/sh/util.sh
Mon, 26 Jun 2023 14:11:01 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 26 Jun 2023 14:11:01 -0500
- changeset 1122
- 8a56361b077f
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
Replace nvim_lsp_signature_help with lsp_signature.nvim
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
}