.lib/sh/util.sh@5c37b939b296
.lib/sh/util.sh
Mon, 01 Jan 2024 14:42:03 -0600
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Mon, 01 Jan 2024 14:42:03 -0600
- changeset 1143
- 5c37b939b296
- parent 969
-
28111ba4e573
- permissions
- -rw-r--r--
skip luasnip/jsregexp build on windows
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
}